You are here

function newsletter_schema_alter in Newsletter 7

Implements hook_schema_alter().

1 call to newsletter_schema_alter()
newsletter_install in ./newsletter.install
Implements hook_install().

File

./newsletter.install, line 89
Contains install,uninstall and update functions for Newsletter module.

Code

function newsletter_schema_alter(&$schema) {
  $schema['field_data_field_newsletter_list']['fields']['target_id_tids'] = array(
    'description' => 'The serialized terms this subscriber selected(only if list is exposed, else NULL).',
    'type' => 'text',
    'not null' => FALSE,
    'default' => NULL,
  );
}