function nodesinblock_update_6001 in Nodes In Block 6
Same name and namespace in other branches
- 7 nodesinblock.install \nodesinblock_update_6001()
Update 6001: Add render field to table.
File
- ./
nodesinblock.install, line 77 - 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;
}