diff options
| author | 2015-07-12 15:23:24 +0200 | |
|---|---|---|
| committer | 2015-07-12 15:23:24 +0200 | |
| commit | 5a3b468f7c480a02346a6cfa8f82efc48e5b2fa8 (patch) | |
| tree | d3c3f40d7522fb1d64446bf7199bdc0a802460e4 /app/SQL/install.sql.mysql.php | |
| parent | 1f07bd2cdd4361a36359ae73bdcf0b5ecbea8f0a (diff) | |
| parent | 4ab535b0ff395cea7ac44956bfa09290f873c660 (diff) | |
Merge branch 'Alkarex-defaultFeed' into dev
Diffstat (limited to 'app/SQL/install.sql.mysql.php')
| -rw-r--r-- | app/SQL/install.sql.mysql.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/SQL/install.sql.mysql.php b/app/SQL/install.sql.mysql.php index c5787d25b..0f4e04620 100644 --- a/app/SQL/install.sql.mysql.php +++ b/app/SQL/install.sql.mysql.php @@ -57,6 +57,8 @@ CREATE TABLE IF NOT EXISTS `%1$sentry` ( ENGINE = INNODB; INSERT IGNORE INTO `%1$scategory` (id, name) VALUES(1, "%2$s"); +INSERT IGNORE INTO `%1$sfeed` (url, category, name, website, description, ttl) VALUES("http://freshrss.org/feeds/all.atom.xml", 1, "FreshRSS.org", "http://freshrss.org/", "FreshRSS, a free, self-hostable aggregator…", 86400); +INSERT IGNORE INTO `%1$sfeed` (url, category, name, website, description, ttl) VALUES("https://github.com/FreshRSS/FreshRSS/releases.atom", 1, "FreshRSS @ GitHub", "https://github.com/FreshRSS/FreshRSS/", "FreshRSS releases @ GitHub", 86400); '); define('SQL_DROP_TABLES', 'DROP TABLES %1$sentry, %1$sfeed, %1$scategory'); |
