5 * Install file for VSS Email
9 * Implementation of hook_schema().
11 function vss_email_schema() {
12 $schema['vss_email'] = array(
13 'description' => 'Stores items for each saved search',
16 'description' => 'The subscription id.',
21 'description' => 'Identifier of the item (can be whatever item .',
26 'primary key' => array('sid', 'itemid'),
32 * Implementation of hook_install().
34 function vss_email_install() {
35 drupal_install_schema('vss_email');
39 * Implementation of hook_uninstall().
41 function vss_email_uninstall() {
42 drupal_uninstall_schema('vss_email');