aboutsummaryrefslogtreecommitdiff
path: root/app/SQL
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-03-26 18:29:10 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-03-26 18:29:10 +0200
commita7064dc700f1a41129511866cb2fb36c522c0d6c (patch)
tree08363c15538fa7994eb0ca8e6eaaec86f5f062c3 /app/SQL
parente956aee53d561fbdc11a78a50ad7cc041108e5b5 (diff)
SQLite create index if not exists
Diffstat (limited to 'app/SQL')
-rw-r--r--app/SQL/install.sql.sqlite.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/SQL/install.sql.sqlite.php b/app/SQL/install.sql.sqlite.php
index dcb7a351a..1fac5fcf7 100644
--- a/app/SQL/install.sql.sqlite.php
+++ b/app/SQL/install.sql.sqlite.php
@@ -53,7 +53,7 @@ $SQL_CREATE_TABLES = array(
'CREATE INDEX IF NOT EXISTS entry_is_favorite_index ON `entry`(`is_favorite`);',
'CREATE INDEX IF NOT EXISTS entry_is_read_index ON `entry`(`is_read`);',
'CREATE INDEX IF NOT EXISTS entry_lastSeen_index ON `entry`(`lastSeen`);', //v1.1.1
-'CREATE INDEX IF NOT EXISTS entry_feed_read_index ON `entry`(`id_feed`,`is_read`);', //v1.7 //TODO: Auto add this index to existing version
+'CREATE INDEX IF NOT EXISTS entry_feed_read_index ON `entry`(`id_feed`,`is_read`);', //v1.7
'INSERT OR IGNORE INTO `category` (id, name) VALUES(1, "%2$s");',
);
@@ -80,6 +80,7 @@ $SQL_CREATE_TABLE_ENTRYTMP = array(
);',
'CREATE INDEX IF NOT EXISTS entrytmp_date_index ON `entrytmp`(`date`);',
+'CREATE INDEX IF NOT EXISTS entry_feed_read_index ON `entry`(`id_feed`,`is_read`);', //v1.7 //This line is used for auto-update
);
global $SQL_INSERT_FEEDS;