function webform_scheduler_update_7003 in Webform Scheduler 7
Module installation error when on PostgreSQL due to use of reserved keyword.
File
- ./
webform_scheduler.install, line 110 - Webform Scheduler module install/schema hooks.
Code
function webform_scheduler_update_7003() {
db_change_field('webform_scheduler', 'begin', 'begin_date', array(
'description' => 'Timestamp of when the webform is scheduled to begin.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
));
db_change_field('webform_scheduler', 'end', 'end_date', array(
'description' => 'Timestamp of when the webform is scheduled to end.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
));
}