function i18n_taxonomy_update_7001 in Internationalization 7
Drop trid column used in D6 if exists
File
- i18n_taxonomy/
i18n_taxonomy.install, line 96 - Installation file for i18n_taxonomy module.
Code
function i18n_taxonomy_update_7001() {
if (db_field_exists('taxonomy_term_data', 'trid')) {
db_drop_field('taxonomy_term_data', 'trid');
}
}