diff --git a/resources/misc/db_init_mysql.sql b/resources/misc/db_init_mysql.sql index 68e397b7c..f55c18d50 100644 --- a/resources/misc/db_init_mysql.sql +++ b/resources/misc/db_init_mysql.sql @@ -19,8 +19,6 @@ CREATE TABLE IF NOT EXISTS Accounts ( type TEXT NOT NULL ); -- ! -INSERT INTO Accounts (type) VALUES ('std-rss'); --- ! CREATE TABLE IF NOT EXISTS TtRssAccounts ( id INTEGER, username TEXT NOT NULL, diff --git a/resources/misc/db_init_sqlite.sql b/resources/misc/db_init_sqlite.sql index d4c20de99..9e37d0132 100644 --- a/resources/misc/db_init_sqlite.sql +++ b/resources/misc/db_init_sqlite.sql @@ -13,8 +13,6 @@ CREATE TABLE IF NOT EXISTS Accounts ( type TEXT NOT NULL ); -- ! -INSERT INTO Accounts (type) VALUES ('std-rss'); --- ! CREATE TABLE IF NOT EXISTS TtRssAccounts ( id INTEGER, username TEXT NOT NULL, diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index fe6b6b9a9..4a6257987 100755 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -4,6 +4,7 @@ Fixed: ▪ Fixed problem with importing invalid OPML 2.0 files. (bug #145) +▪ Fixed error in SQL initialization script which led to problems with in-memory SQLite DBs. (bug #140) 3.0.1 —————