function taxonomy_update_7006 in Drupal 7
Add {taxonomy_term_data}.format column.
File
- modules/
taxonomy/ taxonomy.install, line 829 - Install, update and uninstall functions for the taxonomy module.
Code
function taxonomy_update_7006() {
db_add_field('taxonomy_term_data', 'format', array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'description' => 'The {filter_format}.format of the description.',
));
}