You are here

function prod_monitor_update_6105 in Production check & Production monitor 6

Update 6105 - Update sitekey field in database to allow longer D7 values.

File

prod_monitor/prod_monitor.install, line 279

Code

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

  // Note http://drupal.org/node/150220 about not using hook_schema() here!
  db_change_field($ret, 'prod_monitor_site_modules', 'sitekey', 'sitekey', array(
    'description' => 'The unique key for the site.',
    'type' => 'varchar',
    'length' => 128,
    'not null' => TRUE,
    'default' => '',
  ));
  return $ret;
}