summaryrefslogtreecommitdiff
path: root/database/updates.inc
diff options
context:
space:
mode:
Diffstat (limited to 'database/updates.inc')
-rw-r--r--database/updates.inc7
1 files changed, 7 insertions, 0 deletions
diff --git a/database/updates.inc b/database/updates.inc
index 6dbc04368..a44580c18 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -1273,3 +1273,10 @@ function system_update_162() {
return $ret;
}
+function system_update_163() {
+ $ret = array();
+ if ($GLOBALS['db_type'] == 'mysql') {
+ $ret[] = update_sql('ALTER TABLE {cache} CHANGE data data LONGBLOB');
+ }
+ return $ret;
+}