function background_process_update_7107 in Background Process 7
Same name and namespace in other branches
- 8 background_process.install \background_process_update_7107()
Increase size of args column.
File
- ./background_process.install, line 210 
- This is the installation file for the Background Process module
Code
function background_process_update_7107() {
  if (db_field_exists('background_process', 'args')) {
    db_change_field('background_process', 'args', 'args', array(
      'type' => 'blob',
      'size' => 'big',
      'not null' => FALSE,
    ));
  }
}