You are here

function workbench_email_update_7006 in Workbench Email 7.3

Implements hook_update_N().

Add automatic flag to table.

File

./workbench_email.install, line 259
Install file for the Workbench Email module.

Code

function workbench_email_update_7006() {
  $field = array(
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
    'description' => 'The automatic setting',
  );
  db_add_field('workbench_emails', 'automatic', $field);
}