You are here

function currency_update_7202 in Currency 7.2

Adds missing fields on locale schema.

File

currency/currency.install, line 193

Code

function currency_update_7202(array &$sandbox) {
  db_add_field('currency_locale_pattern', 'symbol_decimal_separator', array(
    'type' => 'varchar',
    'length' => '255',
  ));
  db_add_field('currency_locale_pattern', 'symbol_grouping_separator', array(
    'type' => 'varchar',
    'length' => '255',
  ));
}