You are here

function currency_update_7201 in Currency 7.2

Increases the maximum locale length.

File

currency/currency.install, line 182

Code

function currency_update_7201(array &$sandbox) {
  db_change_field('currency_locale_pattern', 'locale', 'locale', array(
    'not null' => TRUE,
    'length' => 255,
    'type' => 'varchar',
  ));
}