You are here

function background_process_update_6104 in Background Process 6

Change start column from double to numeric

File

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

Code

function background_process_update_6104() {
  $ret = array();
  db_change_field($ret, 'background_process', 'start', 'start', array(
    'type' => 'numeric',
    'precision' => '16',
    'scale' => '6',
    'not null' => FALSE,
  ));
  return $ret;
}