You are here

function context_update_6303 in Context 6.3

Update 6303: Add field for context condition mode.

File

./context.install, line 279

Code

function context_update_6303() {
  $ret = array();
  $spec = array(
    'description' => 'Condition mode for this context.',
    'type' => 'int',
    'default' => 0,
  );
  db_add_field($ret, 'context', 'condition_mode', $spec);
  return $ret;
}