function workbench_email_update_7005 in Workbench Email 7.3
Implements hook_update_N().
Add author flag to table.
File
- ./
workbench_email.install, line 243 - Install file for the Workbench Email module.
Code
function workbench_email_update_7005() {
$field = array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'The author setting',
);
db_add_field('workbench_emails', 'author', $field);
}