You are here

function panels_update_1002 in Panels 5.2

Same name and namespace in other branches
  1. 6.3 panels.install \panels_update_1002()

File

./panels.install, line 269

Code

function panels_update_1002() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {panels_display} ADD COLUMN layout_settings longtext");
  $ret[] = update_sql("ALTER TABLE {panels_pane} ADD COLUMN access varchar(128) AFTER type");
  $ret[] = update_sql("ALTER TABLE {panels_page} ADD COLUMN css longtext AFTER css_id");
  return $ret;
}