You are here

function block_inject_update_7103 in Block Inject 7

Updates the block_inject table to add the condition column

File

./block_inject.install, line 149
Schema function for the Block Inject table *

Code

function block_inject_update_7103() {
  $condition = array(
    'description' => 'The condition if any',
    'type' => 'text',
    'default' => NULL,
    'serialize' => TRUE,
  );
  db_add_field('block_inject', 'bi_condition', $condition, $keys_new = array());
}