function bean_update_7002 in Bean (for Drupal 7) 7
Add delta field.
File
- ./
bean.install, line 304 - Bean installation routines
Code
function bean_update_7002() {
$spec = array(
'description' => "The bean's {block}.delta.",
'type' => 'varchar',
'initial' => '',
'length' => 32,
'not null' => TRUE,
);
db_add_field('bean', 'delta', $spec);
db_update('bean')
->expression('delta', 'bid')
->execute();
return t('Bean delta field added.');
}