You are here

function panels_schema_2 in Panels 6.3

Schema that adds the title_pane field.

2 calls to panels_schema_2()
panels_schema_3 in ./panels.install
Schema that adds the panels_layout table.
panels_update_6305 in ./panels.install
Add the title_pane field.

File

./panels.install, line 220

Code

function panels_schema_2() {
  $schema = panels_schema_1();
  $schema['panels_display']['fields']['title_pane'] = array(
    'type' => 'int',
    'default' => 0,
    'no export' => TRUE,
  );
  return $schema;
}