You are here

function eck_update_7009 in Entity Construction Kit (ECK) 7.3

Same name and namespace in other branches
  1. 7.2 eck.install \eck_update_7009()

Add 'config' field to eck_bundle table.

File

./eck.install, line 504
ECK's requirements, schemas, and logic for install and uninstall.

Code

function eck_update_7009() {

  // Add config field for bundles.
  db_add_field('eck_bundle', 'config', array(
    'description' => 'A serialized list of the bundle settings.',
    'type' => 'text',
    'serialize' => TRUE,
    'initial' => serialize(array()),
    'not null' => TRUE,
  ));
}