function scheduler_update_3 in Scheduler 6
Same name and namespace in other branches
- 5 scheduler.install \scheduler_update_3()
File
- ./
scheduler.install, line 69 - Installation file for Scheduler module.
Code
function scheduler_update_3() {
$ret = array();
db_add_index($ret, 'scheduler', 'scheduler_publish_on', array(
'publish_on',
));
db_add_index($ret, 'scheduler', 'scheduler_unpublish_on', array(
'unpublish_on',
));
return $ret;
}