10 lines
No EOL
299 B
SQL
10 lines
No EOL
299 B
SQL
CREATE TABLE IF NOT EXISTS Accounts (
|
|
id INTEGER PRIMARY KEY,
|
|
type TEXT NOT NULL
|
|
);
|
|
-- !
|
|
INSERT INTO Accounts (type) VALUES ('std-rss');
|
|
-- !
|
|
DROP TABLE IF EXISTS FeedsData;
|
|
-- !
|
|
UPDATE Information SET inf_value = '4' WHERE inf_key = 'schema_version'; |