You are here

function panels_update_5205 in Panels 6.3

Same name and namespace in other branches
  1. 5.2 panels.install \panels_update_5205()

File

./panels.install, line 513

Code

function panels_update_5205() {
  if (!empty($GLOBALS['SKIP_PANELS_UPDATES'])) {
    return array();
  }
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {panels_page} ADD COLUMN arguments longtext");
  return $ret;
}