summaryrefslogtreecommitdiff
path: root/public/install.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-28 19:35:47 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-28 19:35:47 +0100
commit37ba05a86132bb00c4e980265621e74bba7fecc8 (patch)
treee9ee698854f27f2bd8bbc9e751dfcf88bb249249 /public/install.php
parentdc2e1dc0817f0818943647d6b005ea35683c9c1b (diff)
SQL : Suppression index e.date
Le trie par e.id semble bien fonctionner suite à https://github.com/marienfressinaud/FreshRSS/issues/202
Diffstat (limited to 'public/install.php')
-rw-r--r--public/install.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/public/install.php b/public/install.php
index c61910fee..764d152f5 100644
--- a/public/install.php
+++ b/public/install.php
@@ -59,8 +59,7 @@ define ('SQL_REQ_ENTRY', 'CREATE TABLE IF NOT EXISTS `%sentry` (
FOREIGN KEY (`id_feed`) REFERENCES `%sfeed`(`id`) ON DELETE CASCADE ON UPDATE CASCADE,
UNIQUE KEY (`id_feed`,`guid`), -- v0.7
INDEX (`is_favorite`), -- v0.7
- INDEX (`is_read`), -- v0.7
- INDEX (`date`) -- v0.7 //Consider removing after https://github.com/marienfressinaud/FreshRSS/issues/202
+ INDEX (`is_read`) -- v0.7
) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;');