You are here

function services_update_7302 in Services 7.3

Update 7302 restores the usage of Chaos tools to check for enable/disable-status

File

./services.install, line 212
Install, uninstall and update the Services module.

Code

function services_update_7302() {
  $table = 'services_endpoint';
  if (db_field_exists($table, 'status')) {
    db_drop_field($table, 'status');
  }
}