You are here

function i18n_string_update_7004 in Internationalization 7

Change objectindex from int to bigint.

File

i18n_string/i18n_string.install, line 258
Installation file for i18n_string module.

Code

function i18n_string_update_7004() {
  db_change_field('i18n_string', 'objectindex', 'objectindex', array(
    'type' => 'int',
    'size' => 'big',
    'not null' => TRUE,
    'default' => 0,
    'description' => 'Integer value of Object ID.',
  ));
}