You are here

function custom_formatters_update_6103 in Custom Formatters 6

File

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

Code

function custom_formatters_update_6103() {
  $ret = array();
  db_drop_field($ret, 'formatters', 'cfid');
  db_add_field($ret, 'formatters', 'status', array(
    'type' => 'int',
    'unsiggned' => TUE,
    'not null' => TRUE,
    'default' => 1,
  ));
  return $ret;
}