function taxonomy_update_7006
7.x taxonomy.install | taxonomy_update_7006() |
Add {taxonomy_term_data}.format column.
File
- drupal-7.x/
modules/ taxonomy/ taxonomy.install, line 828 - 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.',
));
}