You are here

function workflow_update_7004 in Workflow 7.2

Same name and namespace in other branches
  1. 7 workflow.install \workflow_update_7004()

Update scheduled state transitions with no association to "node".

File

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

Code

function workflow_update_7004() {
  db_update('workflow_scheduled_transition')
    ->fields(array(
    'entity_type' => 'node',
    'language' => LANGUAGE_NONE,
    'delta' => '0',
  ))
    ->execute();
}