You are here

function wsclient_update_7102 in Web service client 7

Increase size of datatypes and operations columns to medium.

File

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

Code

function wsclient_update_7102() {
  db_change_field('wsclient_service', 'datatypes', 'datatypes', array(
    'type' => 'text',
    'not null' => FALSE,
    'serialize' => TRUE,
    'size' => 'medium',
    'description' => 'The complex data types used in the operations.',
  ));
  db_change_field('wsclient_service', 'operations', 'operations', array(
    'type' => 'text',
    'not null' => FALSE,
    'serialize' => TRUE,
    'size' => 'medium',
    'description' => 'The operations this web service offers.',
  ));
}