You are here

function simple_popup_blocks_update_8102 in Simple Popup Blocks 8.2

Add cookie_expiry field in simple_popup_blocks table.

File

./simple_popup_blocks.install, line 148
Install, update and uninstall functions for the dbtng_example module.

Code

function simple_popup_blocks_update_8102() {
  $cookie_expiry = [
    'type' => 'int',
    'not null' => TRUE,
    'default' => 100,
    'description' => "Cookie expiry in days",
  ];
  $schema = Database::getConnection()
    ->schema();
  $schema
    ->addField('simple_popup_blocks', 'cookie_expiry', $cookie_expiry);
}