You are here

function blockcache_alter_update_7001 in Block Cache Alter 7

Fix the length of the delta VARCHAR to 64.

File

./blockcache_alter.install, line 97
Install file.

Code

function blockcache_alter_update_7001() {
  db_change_field('blockcache_alter', 'delta', 'delta', array(
    'type' => 'varchar',
    'length' => 64,
    'not null' => TRUE,
    'default' => '0',
    'description' => 'Unique ID for block within a module.',
  ));
}