You are here

function ultimate_cron_update_7204 in Ultimate Cron 7.2

Change {ultimate_cron_log} message schema to big text.

File

./ultimate_cron.install, line 1044
Installation file for Ultimate Cron.

Code

function ultimate_cron_update_7204() {
  db_change_field('ultimate_cron_log', 'message', 'message', array(
    'description' => 'Message',
    'type' => 'text',
    'size' => 'big',
    'not null' => FALSE,
  ));
}