You are here

function panels_schema_7 in Panels 7.3

2 calls to panels_schema_7()
panels_schema_8 in ./panels.install
panels_update_7304 in ./panels.install
Update "panels_pane" table field lengths to 255 chars.

File

./panels.install, line 115

Code

function panels_schema_7() {
  $schema = panels_schema_6();

  // Update field lengths to 255 chars.
  $schema['panels_pane']['fields']['subtype']['length'] = '255';
  $schema['panels_pane']['fields']['panel']['length'] = '255';
  $schema['panels_pane']['fields']['type']['length'] = '255';
  return $schema;
}