function scheduler_update_6100 in Scheduler 6
File
- ./
scheduler.install, line 76 - Installation file for Scheduler module.
Code
function scheduler_update_6100() {
$ret = array();
if (db_column_exists('scheduler', 'timezone')) {
$ret[] = update_sql("UPDATE {scheduler} SET publish_on=publish_on-timezone WHERE publish_on<>0");
$ret[] = update_sql("UPDATE {scheduler} SET unpublish_on=unpublish_on-timezone WHERE unpublish_on<>0");
db_drop_field($ret, 'scheduler', 'timezone');
}
return $ret;
}