You are here

function i18n_taxonomy_update_7004 in Internationalization 7

Update D6 language fields in {taxonomy_vocabulary} and {taxonomy_term_data}.

File

i18n_taxonomy/i18n_taxonomy.install, line 127
Installation file for i18n_taxonomy module.

Code

function i18n_taxonomy_update_7004() {
  i18n_install_create_fields('taxonomy_vocabulary', array(
    'language',
  ));
  i18n_install_create_fields('taxonomy_term_data', array(
    'language',
  ));
}