function taxonomy_update_7003 in Drupal 7
Remove the related terms setting from vocabularies.
This setting has not been used since Drupal 6. The {taxonomy_relations} table itself is retained to allow for data to be upgraded.
File
- modules/
taxonomy/ taxonomy.install, line 324 - Install, update and uninstall functions for the taxonomy module.
Code
function taxonomy_update_7003() {
db_drop_field('taxonomy_vocabulary', 'relations');
}