You are here

function nodequeue_update_6001 in Nodequeue 7.3

Same name and namespace in other branches
  1. 6.2 nodequeue.install \nodequeue_update_6001()
  2. 7.2 nodequeue.install \nodequeue_update_6001()

@todo Please insert a Doxygen style comment for this hook_update_N.

File

./nodequeue.install, line 250
Install, update and uninstall functions for the nodequeue module.

Code

function nodequeue_update_6001() {
  $ret = array();
  db_add_field('nodequeue_queue', 'i18n', array(
    'description' => '',
    'type' => 'int',
    'size' => 'tiny',
    'default' => 1,
  ));
  return $ret;
}