You are here

function custom_formatters_update_6102 in Custom Formatters 6

File

./custom_formatters.install, line 96
Install, update and uninstall functions for the Custom Formatters module.

Code

function custom_formatters_update_6102() {
  $ret = array();
  db_change_field($ret, 'formatters', 'name', 'name', array(
    'type' => 'varchar',
    'length' => 64,
    'not null' => TRUE,
    'default' => '',
  ));
  db_change_field($ret, 'formatters', 'label', 'label', array(
    'type' => 'varchar',
    'length' => 64,
    'not null' => TRUE,
    'default' => '',
  ));
  return $ret;
}