diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-01-06 08:12:54 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-06 08:12:54 -0800 |
commit | 56c4997663cfc93174bd0b450768b0bffffb5169 (patch) | |
tree | b1f5d942d120773201aaf5356f46109cc5235d30 /installer/install.sql | |
parent | 9e6e2138dfd507dbd0ce8835072b7d950855b3d4 (diff) | |
parent | 84f73fbe9e1b7127fb342dc164b066f51b7fa67d (diff) |
Merge branch 'organize_dev' of github.com:gallery/gallery3 into organize_dev
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 84a975ae..6aae8014 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`), - KEY `key` (`key`), + UNIQUE KEY `key` (`key`), KEY `tags` (`tags`) ) DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; @@ -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` varchar(2048) DEFAULT NULL, + `description` text, `height` int(9) DEFAULT NULL, `left_ptr` int(9) NOT NULL, `level` int(9) NOT NULL, |