function date_api_update_6003 in Date 6.2
File
- ./
date_api.install, line 402
Code
function date_api_update_6003() {
$ret = array();
db_change_field($ret, 'date_format_types', 'type', 'type', array(
'type' => 'varchar',
'length' => 200,
'not null' => TRUE,
));
db_change_field($ret, 'date_format', 'type', 'type', array(
'type' => 'varchar',
'length' => 200,
'not null' => TRUE,
));
db_change_field($ret, 'date_format', 'format', 'format', array(
'type' => 'varchar',
'length' => 100,
'not null' => TRUE,
));
db_change_field($ret, 'date_format_locale', 'type', 'type', array(
'type' => 'varchar',
'length' => 200,
'not null' => TRUE,
));
db_change_field($ret, 'date_format_locale', 'format', 'format', array(
'type' => 'varchar',
'length' => 100,
'not null' => TRUE,
));
db_drop_unique_key($ret, 'date_format', 'format');
db_add_unique_key($ret, 'date_format', 'format', array(
'format',
'type',
));
return $ret;
}