function taxonomy_update_7006
Add {taxonomy_term_data}.format column.
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.install, line 821 - Install, update and uninstall functions for the taxonomy module.
Código
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.',
));
}