You are here

function smartqueue_update_7003 in Nodequeue 7.2

Add use_parents_all.

File

modules/smartqueue/smartqueue.install, line 112
Install, update and uninstall functions for the smartqueue module.

Code

function smartqueue_update_7003() {
  $spec = array(
    'description' => 'Whether a queue is to use all the terms ancestors when displaying the queue selection.',
    'type' => 'int',
    'size' => 'tiny',
    'default' => 0,
  );
  db_add_field('smartqueue', 'use_parents_all', $spec);
}