function lineage_update_7000 in Taxonomy Lineage 7
Implements hook_update_N().
Rename the lineage table to be similar to other Drupal 7 taxonomy table names.
File
- ./
lineage.install, line 32 - Install, update, and uninstall functions for the Taxonomy Lineage module.
Code
function lineage_update_7000() {
db_rename_table('term_lineage', 'taxonomy_term_lineage');
return t('Changed the lineage data table name to <em>taxonomy_term_lineage</em>.');
}