diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-12-31 22:29:00 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-12-31 22:29:00 -0800 |
commit | affbc28876901058810d9fd26a8f7795084f2efd (patch) | |
tree | 9f93e96a9793bcdcff16521b3e9816c8ba4b2e3d /installer/install.sql | |
parent | 866a7a87b71febe4ffbd3b708c4775f1ee3df9e1 (diff) |
Update gallery module to v42 to reflect key changes in the cache
table in 440597356d8719bdc6733d2d86aaef5f86d05a1e for #1559.
Diffstat (limited to 'installer/install.sql')
-rw-r--r-- | installer/install.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/install.sql b/installer/install.sql index baee2b9d..2a2bf269 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -43,7 +43,7 @@ CREATE TABLE {caches} ( `expiration` int(9) NOT NULL, `cache` longblob, PRIMARY KEY (`id`), - UNIQUE KEY `key` (`key`), + KEY `key` (`key`), KEY `tags` (`tags`) ) DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; @@ -244,7 +244,7 @@ CREATE TABLE {modules} ( KEY `weight` (`weight`) ) AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -INSERT INTO {modules} VALUES (1,1,'gallery',41,1); +INSERT INTO {modules} VALUES (1,1,'gallery',42,1); INSERT INTO {modules} VALUES (2,1,'user',3,2); INSERT INTO {modules} VALUES (3,1,'comment',3,3); INSERT INTO {modules} VALUES (4,1,'organize',2,4); |