You are here

function services_update_6304 in Services 6.3

Update 6304 removes title functionality as it is no longer used.

File

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

Code

function services_update_6304() {
  $ret = array();
  db_drop_field($ret, 'services_endpoint', 'title');
  return $ret;
}