function taxonomy_update_7009
Change {taxonomy_term_data}.format into varchar.
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.install, line 869 - Install, update and uninstall functions for the taxonomy module.
Código
function taxonomy_update_7009() {
db_change_field('taxonomy_term_data', 'format', 'format', array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
'description' => 'The {filter_format}.format of the description.',
));
}