diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-08-14 15:08:38 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-08-14 15:08:38 -0700 |
commit | b6a377bc8219a5354778692086cd11b8fd05f927 (patch) | |
tree | f93cf9a3553b77d3caee985c73da79cb2483818e /installer/install.sql | |
parent | d9f8c8a295b760bb5b858c96f1658d50c321bd01 (diff) |
Update install.sql for gallery module version 3. This was left out of
779d91cca01567a09b894e9fff4dfa32cb82d3d9 but it doesn't cause any real
damage, it just means that anybody who got the code in the intervening
window and did an initial install required an upgrade as well.
Diffstat (limited to 'installer/install.sql')
-rw-r--r-- | installer/install.sql | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/installer/install.sql b/installer/install.sql index 18cf607a..0df82086 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -184,7 +184,8 @@ CREATE TABLE {items} ( KEY `parent_id` (`parent_id`), KEY `type` (`type`), KEY `random` (`rand_key`), - KEY `weight` (`weight`) + KEY `weight` (`weight`), + KEY `left_ptr` (`left_ptr`) ) AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; INSERT INTO {items} VALUES (1,NULL,NULL,UNIX_TIMESTAMP(),'',NULL,1,1,NULL,NULL,2,0,NULL,'','',1,NULL,NULL,2,NULL,'weight','ASC',1,NULL,NULL,'Gallery','album',UNIX_TIMESTAMP(),0,1,NULL,'1','1'); @@ -242,7 +243,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',32,1); +INSERT INTO {modules} VALUES (1,1,'gallery',33,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',1,4); |