You are here

function taxonomy_entity_index_update_7000 in Taxonomy Entity Index 7

Add the delta column to the {taxonomy_entity_index} table.

File

./taxonomy_entity_index.install, line 77

Code

function taxonomy_entity_index_update_7000() {
  db_add_field('taxonomy_entity_index', 'delta', array(
    'description' => 'The delta order of the term.',
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
  ));
}