function taxonomy_update_7003
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.
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.install, line 324 - Install, update and uninstall functions for the taxonomy module.
Código
function taxonomy_update_7003() {
db_drop_field('taxonomy_vocabulary', 'relations');
}