You are here

function background_process_update_6001 in Background Process 6

Add status field to table

File

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

Code

function background_process_update_6001() {
  $ret = array();
  db_add_field($ret, 'background_process', 'status', array(
    'type' => 'int',
    'size' => 'normal',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}