You are here

function workflow_update_7002 in Workflow 7

Same name and namespace in other branches
  1. 7.2 workflow.install \workflow_update_7002()

Add userid to scheduled transition table.

File

./workflow.install, line 398
Install, update and uninstall functions for the workflow module.

Code

function workflow_update_7002() {
  db_add_field('workflow_scheduled_transition', 'uid', array(
    'description' => 'The user who scheduled this state transition.',
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
    'disp-width' => '10',
    'initial' => 0,
  ));
}