You are here

function bean_update_7013 in Bean (for Drupal 7) 7

Remove default for bean_revision.delta.

File

./bean.install, line 472
Bean installation routines

Code

function bean_update_7013() {
  db_change_field('bean_revision', 'delta', 'delta', array(
    'description' => "The bean's {block}.delta.",
    'type' => 'varchar',
    'length' => 32,
    'not null' => TRUE,
  ));
}