You are here

function deploy_update_7002 in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 deploy.install \deploy_update_7002()

Add new fields to the 'deploy_plans' table.

File

./deploy.install, line 365
Deploy module installation functions.

Code

function deploy_update_7002() {
  if (!db_field_exists('deploy_plans', 'dependency_plugin')) {
    db_add_field('deploy_plans', 'dependency_plugin', array(
      'description' => 'Dependency plugin used for this plan.',
      'type' => 'varchar',
      'length' => 128,
      'not null' => TRUE,
      'default' => '',
    ));
  }
}