You are here

function wsclient_update_7101 in Web service client 7

Add global_parameters column.

File

./wsclient.install, line 134
Web service client - installation file.

Code

function wsclient_update_7101() {
  if (!db_field_exists('wsclient_service', 'global_parameters')) {
    db_add_field('wsclient_service', 'global_parameters', array(
      'type' => 'text',
      'not null' => FALSE,
      'serialize' => TRUE,
      'description' => 'The global parameters definition of this web service.',
    ));
  }
}