function block_inject_update_7100 in Block Inject 7
Updates the block_inject table to increase the node_type and node_name fields to allow for more node types per region.
File
- ./
block_inject.install, line 93 - Schema function for the Block Inject table *
Code
function block_inject_update_7100() {
db_change_field('block_inject', 'node_type', 'node_type', array(
'type' => 'text',
), $keys_new = array());
db_change_field('block_inject', 'node_name', 'node_name', array(
'type' => 'text',
), $keys_new = array());
}