You are here

function webform_workflow_update_7000 in Webform Workflow 7

Changes database field configurations to allow longer state transition messages.

File

./webform_workflow.install, line 216
Webform Workflow module install/schema hooks.

Code

function webform_workflow_update_7000() {
  $spec = array(
    'description' => 'A log message.',
    'type' => 'text',
    'not null' => FALSE,
  );
  db_change_field('webform_workflow_transition', 'message', 'message', $spec);
}