9 lines
332 B
SQL
Executable File
9 lines
332 B
SQL
Executable File
CREATE TABLE IF NOT EXISTS OwnCloudAccounts (
|
|
id INTEGER,
|
|
username TEXT NOT NULL,
|
|
password TEXT,
|
|
url TEXT NOT NULL,
|
|
force_update INTEGER(1) NOT NULL CHECK (force_update >= 0 AND force_update <= 1) DEFAULT 0,
|
|
|
|
FOREIGN KEY (id) REFERENCES Accounts (id)
|
|
); |