diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-01-06 00:14:59 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-06 00:14:59 -0800 |
commit | 84f73fbe9e1b7127fb342dc164b066f51b7fa67d (patch) | |
tree | 5d1ddc07f71684a4c486468513baa3f279b4e58a /installer/install.sql | |
parent | edf2a46b0276ca86e13fcbc66ff1b4aa1edf64fb (diff) | |
parent | d74aad072d8ccca70efb1c8b673e8368566a1974 (diff) |
Merge branch 'master' 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, |