You are here

function background_process_update_7107 in Background Process 8

Same name and namespace in other branches
  1. 7 background_process.install \background_process_update_7107()

Implements to Increase size of args column.

File

./background_process.install, line 172
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', [
      'type' => 'blob',
      'size' => 'big',
      'not null' => FALSE,
    ]);
  }
}