diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-05-06 05:50:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-05-06 05:50:43 +0000 |
commit | f9a89872711422a7e4809acf403456fbf839ebd0 (patch) | |
tree | d3ff6cc6e64033ff485ce78ea71ee6a54f086385 /modules/system/system.install | |
parent | e66371cac17e35d2cb0c9bf48f792193b79f3a7c (diff) | |
download | brdo-f9a89872711422a7e4809acf403456fbf839ebd0.tar.gz brdo-f9a89872711422a7e4809acf403456fbf839ebd0.tar.bz2 |
- Patch #139673 by hunmonk and bjaspan: made caching work on PostgreSQL.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index c6b55878e..f8739d2d0 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -713,7 +713,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 TABLE {cache_filter} ( @@ -722,7 +722,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 TABLE {cache_page} ( @@ -731,7 +731,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)"); @@ -3848,9 +3848,9 @@ function system_update_6012() { switch ($GLOBALS['db_type']) { case 'pgsql': - db_add_column($ret, 'cache', 'serialized', 'int(1)', array('default' => "'0'", 'not null' => TRUE)); - db_add_column($ret, 'cache_filter', 'serialized', 'int(1)', array('default' => "'0'", 'not null' => TRUE)); - db_add_column($ret, 'cache_page', 'serialized', 'int(1)', array('default' => "'0'", 'not null' => TRUE)); + db_add_column($ret, 'cache', 'serialized', 'smallint', array('default' => "'0'", 'not null' => TRUE)); + db_add_column($ret, 'cache_filter', 'serialized', 'smallint', array('default' => "'0'", 'not null' => TRUE)); + db_add_column($ret, 'cache_page', 'serialized', 'smallint', array('default' => "'0'", 'not null' => TRUE)); break; case 'mysql': case 'mysqli': |