You are here

function wsclient_update_7104 in Web service client 7

Add global_header_parameters column.

File

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

Code

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