You are here

function services_update_6303 in Services 6.3

Update 6303 adds the possibility to configure server settings on a per-endpoint basis. and sets upgrades all new servers to have at least services session enabled.

File

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

Code

function services_update_6303() {
  $ret = array();

  // Add the new server settings field.
  $new_field = array(
    'description' => 'The server settings for the endpoint.',
    'type' => 'blob',
    'size' => 'big',
    'not null' => TRUE,
    'serialize' => TRUE,
  );
  db_add_field($ret, 'services_endpoint', 'server_settings', $new_field);
  return $ret;
}