SQL DROP TABLE

https://github.com/FreshRSS/FreshRSS/issues/1320
This commit is contained in:
Alexandre Alapetite
2016-10-15 20:01:48 +02:00
parent 91e3711a87
commit 34e38e3a97
3 changed files with 3 additions and 3 deletions

View File

@@ -59,4 +59,4 @@ $SQL_CREATE_TABLES = 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 TABLES entry, feed, category');
define('SQL_DROP_TABLES', 'DROP TABLE IF EXISTS entry, feed, category');