You are here

function currency_update_7200 in Currency 7.2

Sets all primary keys to not null.

File

currency/currency.install, line 171

Code

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