You are here

function nodesinblock_update_6001 in Nodes In Block 7

Same name and namespace in other branches
  1. 6 nodesinblock.install \nodesinblock_update_6001()

Update 6001: Add render field to table.

File

./nodesinblock.install, line 70
Nodes in block install file.

Code

function nodesinblock_update_6001() {
  $ret = array();
  db_add_field($ret, 'nodes_in_block', 'render', array(
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'size' => 'tiny',
    'default' => 0,
  ));
  return $ret;
}