Convert the 'format' column in {date_format_locale} to case sensitive varchar.

Related topics

File

modules/system/system.install, line 3312
Install, update and uninstall functions for the system module.

Code

function system_update_7080() {
  $spec = array(
    'description' => 'The date format string.',
    'type' => 'varchar',
    'length' => 100,
    'not null' => TRUE,
    'binary' => TRUE,
  );
  db_change_field('date_format_locale', 'format', 'format', $spec);
}