function ultimate_cron_update_7107 in Ultimate Cron 7.2
Same name and namespace in other branches
- 7 ultimate_cron.install \ultimate_cron_update_7107()
Add service host to log.
File
- ./
ultimate_cron.install, line 604 - Installation file for Ultimate Cron.
Code
function ultimate_cron_update_7107() {
// This update is part of the the Drupal 6.x branch, so we don't need to
// safety check it.
db_add_field('ultimate_cron_log', 'service_host', array(
'description' => 'Service host',
'type' => 'varchar',
'length' => 127,
'not null' => TRUE,
'default' => '',
));
}