You are here

function nodesinblock_update_7001 in Nodes In Block 7

Update 7001: Make the render field a bit bigger.

File

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

Code

function nodesinblock_update_7001() {
  db_change_field('nodesinblock', 'render', 'render', array(
    'type' => 'varchar',
    'not null' => TRUE,
    'length' => 40,
    'default' => '',
  ));
}