mirror of
https://github.com/1f349/violet.git
synced 2024-11-09 22:22:50 +00:00
7 lines
139 B
SQL
7 lines
139 B
SQL
CREATE TABLE IF NOT EXISTS domains
|
|
(
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
domain TEXT UNIQUE,
|
|
active INTEGER DEFAULT 1
|
|
);
|