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