diff options
| author | 2017-04-10 00:43:18 +0200 | |
|---|---|---|
| committer | 2017-04-10 00:43:18 +0200 | |
| commit | 5d54e47ff4065167a07085df07a590372ac5d636 (patch) | |
| tree | 07881dca368b7585a115e6351f0dd788164d8a19 /app/SQL/install.sql.sqlite.php | |
| parent | d340989cb5f8facae8dafdc5499a5888fce1bb85 (diff) | |
Fix DROP tables for deferred insertion
https://github.com/FreshRSS/FreshRSS/pull/1470
Diffstat (limited to 'app/SQL/install.sql.sqlite.php')
| -rw-r--r-- | app/SQL/install.sql.sqlite.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/SQL/install.sql.sqlite.php b/app/SQL/install.sql.sqlite.php index bce9f5a95..c4e4af006 100644 --- a/app/SQL/install.sql.sqlite.php +++ b/app/SQL/install.sql.sqlite.php @@ -86,4 +86,4 @@ $SQL_INSERT_FEEDS = array( 'INSERT OR IGNORE INTO `feed` (url, category, name, website, description, ttl) VALUES("https://github.com/FreshRSS/FreshRSS/releases.atom", 1, "FreshRSS releases", "https://github.com/FreshRSS/FreshRSS/", "FreshRSS releases @ GitHub", 86400);', ); -define('SQL_DROP_TABLES', 'DROP TABLE IF EXISTS entry, feed, category'); +define('SQL_DROP_TABLES', 'DROP TABLE IF EXISTS `entrytmp`, `entry`, `feed`, `category`'); |
