You are here

function panels_update_6308 in Panels 6.3

Add the panels_layout table

File

./panels.install, line 1473

Code

function panels_update_6308() {
  $ret = array();

  // Schema 3 is locked and should not be changed.
  $schema = panels_schema_3();
  db_create_table($ret, 'panels_layout', $schema['panels_layout']);
  return $ret;
}