You are here

function background_process_update_6106 in Background Process 6

Change schema to SQL 99 compliance

File

./background_process.install, line 192
This is the installation file for the Background Process module

Code

function background_process_update_6106() {
  $ret = array();
  db_change_field($ret, 'background_process', 'start', 'start_stamp', array(
    'type' => 'varchar',
    'length' => '18',
    'not null' => FALSE,
  ));
  db_change_field($ret, 'background_process', 'status', 'exec_status', array(
    'type' => 'int',
    'size' => 'normal',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}