You are here

function tvi_update_6003 in Taxonomy Views Integrator 6

Implements tvi_hook_update_N().

Related topics

File

./tvi.install, line 144
Installation file for TVI module.

Code

function tvi_update_6003() {
  $ret = array();
  db_add_field($ret, 'tvi_settings', 'description_enabled', array(
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 1,
    'description' => 'A flag to indicate whether to display the term/voc description or not.',
  ));
  return $ret;
}