taxonomy_update_7006

  1. drupal
    1. 7 taxonomy.install function
Drupal 7 taxonomy_update_7006()

Add {taxonomy_term_data}.format column.

File

modules/taxonomy/taxonomy.install, line 743
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.',
  ));
}