You are here

function services_update_7399 in Services 7.3

Update 7304 removes the title as it is no longer used

File

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

Code

function services_update_7399() {
  $table = 'services_endpoint';
  if (db_field_exists($table, 'title')) {
    db_drop_field($table, 'title');
  }
}