mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-12 17:23:55 -04:00
Default or custom OPML (#2627)
* Default or custom OPML Fix https://github.com/FreshRSS/FreshRSS/issues/2075 Replaces https://github.com/FreshRSS/FreshRSS/pull/2515 https://github.com/FreshRSS/FreshRSS/issues/2514 Uses the local ./data/opml.xml if it exists, otherwise ./opml.default.xml * Better message * Move to controller
This commit is contained in:
committed by
GitHub
parent
67fc72fb61
commit
7819a43197
@@ -100,12 +100,6 @@ CREATE TABLE IF NOT EXISTS `_entrytag` (
|
||||
CREATE INDEX IF NOT EXISTS `_entrytag_id_entry_index` ON `_entrytag` ("id_entry");
|
||||
SQL;
|
||||
|
||||
$SQL_INSERT_FEED = <<<'SQL'
|
||||
INSERT INTO `_feed` (url, category, name, website, description, ttl)
|
||||
SELECT :url::VARCHAR, 1, :name, :website, :description, 86400
|
||||
WHERE NOT EXISTS (SELECT id FROM `_feed` WHERE url = :url);
|
||||
SQL;
|
||||
|
||||
$SQL_DROP_TABLES = <<<'SQL'
|
||||
DROP TABLE IF EXISTS `_entrytag`, `_tag`, `_entrytmp`, `_entry`, `_feed`, `_category`;
|
||||
SQL;
|
||||
|
||||
Reference in New Issue
Block a user