You are here

function panels_schema_10 in Panels 7.3

1 call to panels_schema_10()
panels_schema in ./panels.install
Implements of hook_schema().

File

./panels.install, line 57

Code

function panels_schema_10() {
  $schema = panels_schema_9();

  // Add primary key to panels_allowed_types table.
  $schema['panels_allowed_types']['primary key'] = array(
    'module',
    'type',
  );
  return $schema;
}