diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-01-03 11:42:45 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-03 11:42:45 -0800 |
commit | 21ad2c64ff8add478352a0ee7800d87328594ee0 (patch) | |
tree | 7434eed1078e28da22cc1031b5385d3d715d55c8 | |
parent | 4a882108259f9542a6c8f2ffe95c9ee0e1c102cd (diff) | |
parent | 8263cb023fb4fe0b6fdc9fc61b35518dcf09946e (diff) |
Merge branch 'master' of github.com:gallery/gallery3
-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 c398d130..84a975ae 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -152,7 +152,7 @@ CREATE TABLE {items} ( `album_cover_item_id` int(9) DEFAULT NULL, `captured` int(9) DEFAULT NULL, `created` int(9) DEFAULT NULL, - `description` text DEFAULT NULL, + `description` varchar(2048) DEFAULT NULL, `height` int(9) DEFAULT NULL, `left_ptr` int(9) NOT NULL, `level` int(9) NOT NULL, @@ -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',42,1); +INSERT INTO {modules} VALUES (1,1,'gallery',43,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); |