summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-05-14 16:22:26 +0000
committerDries Buytaert <dries@buytaert.net>2007-05-14 16:22:26 +0000
commit8ba14fa492cc4b56f48b810eccbd54c3562bc3f2 (patch)
tree27f5cabe1aa1d4b95dc8c82298aa7d2ed2156250 /modules/system/system.install
parentf07760b3384da803cbd4762ed22109f74edb292c (diff)
downloadbrdo-8ba14fa492cc4b56f48b810eccbd54c3562bc3f2.tar.gz
brdo-8ba14fa492cc4b56f48b810eccbd54c3562bc3f2.tar.bz2
- Patch #138706 by hunmonk: fixed PostgreSQL caching problem.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 2578bb8b8..cc5c5b593 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -750,7 +750,7 @@ function system_install() {
expire int NOT NULL default '0',
created int NOT NULL default '0',
headers text,
- serialized int(1) NOT NULL default '0',
+ serialized smallint NOT NULL default '0',
PRIMARY KEY (cid)
)");
db_query("CREATE INDEX {cache}_expire_idx ON {cache} (expire)");
@@ -3919,7 +3919,7 @@ function system_update_6015() {
expire int NOT NULL default '0',
created int NOT NULL default '0',
headers text,
- serialized int(1) NOT NULL default '0',
+ serialized smallint NOT NULL default '0',
PRIMARY KEY (cid)
)");
$ret[] = update_sql("CREATE INDEX {cache_form}_expire_idx ON {cache_form} (expire)");