You are here

function panelizer_update_7104 in Panelizer 7.3

Same name and namespace in other branches
  1. 7.2 panelizer.install \panelizer_update_7104()

Add the {panelizer_defaults}.access field.

File

./panelizer.install, line 482
Install, update and uninstall functions for the panelizer module.

Code

function panelizer_update_7104() {
  $spec = array(
    'type' => 'text',
    'size' => 'big',
    'description' => 'Contains the access control for editing this default.',
    'serialize' => TRUE,
    'object default' => array(),
  );
  db_add_field('panelizer_defaults', 'access', $spec);
}