You are here

function deploy_update_6003 in Deploy - Content Staging 6

Implementation of hook_update().

Drop unused api_key field.

File

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

Code

function deploy_update_6003() {
  $update = array();
  db_drop_field($update, 'deploy_servers', 'api_key');
  return $update;
}