You are here

function deploy_update_6002 in Deploy - Content Staging 6

Implementation of hook_update().

Add the internal plan field

File

./deploy.install, line 247
Contains install and update functions for Deploy.

Code

function deploy_update_6002() {
  $update = array();
  db_add_field($update, 'deploy_plan', 'internal', array(
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
  ));
  return $update;
}