mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-08 14:21:29 +01:00
11 lines
412 B
MySQL
11 lines
412 B
MySQL
|
CREATE TABLE IF NOT EXISTS FeedlyAccounts (
|
||
|
id INTEGER,
|
||
|
username TEXT NOT NULL,
|
||
|
developer_access_token TEXT,
|
||
|
refresh_token TEXT,
|
||
|
msg_limit INTEGER NOT NULL DEFAULT -1 CHECK (msg_limit >= -1),
|
||
|
|
||
|
FOREIGN KEY (id) REFERENCES Accounts (id)
|
||
|
);
|
||
|
-- !
|
||
|
UPDATE Information SET inf_value = '21' WHERE inf_key = 'schema_version';
|