You are here

function prod_monitor_update_6102 in Production check & Production monitor 6

Update 6102 - Increase the size of the settings field

File

prod_monitor/prod_monitor.install, line 182

Code

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

  // Note http://drupal.org/node/150220 about not using hook_schema() here!
  db_change_field($ret, 'prod_monitor_sites', 'settings', 'settings', array(
    'description' => 'All settings related to the site.',
    'type' => 'text',
    'size' => 'medium',
    'default' => NULL,
  ));
  return $ret;
}