function panels_update_5213 in Panels 6.3
Same name and namespace in other branches
- 5.2 panels.install \panels_update_5213()
Add a field to store pane caching information.
File
- ./
panels.install, line 688
Code
function panels_update_5213() {
if (!empty($GLOBALS['SKIP_PANELS_UPDATES'])) {
return array();
}
$ret = array();
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
$ret[] = update_sql("ALTER TABLE {panels_pane} ADD COLUMN cache longtext AFTER configuration");
$ret[] = update_sql("ALTER TABLE {panels_display} ADD COLUMN cache longtext AFTER panel_settings");
break;
case 'pgsql':
db_add_column($ret, 'panels_pane', 'cache', 'text');
db_add_column($ret, 'panels_display', 'cache', 'text');
}
return $ret;
}