mirror of
https://github.com/1f349/violet.git
synced 2024-11-09 22:22:50 +00:00
11 lines
246 B
SQL
11 lines
246 B
SQL
CREATE TABLE IF NOT EXISTS redirects
|
|
(
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
source TEXT,
|
|
pre INTEGER,
|
|
destination TEXT,
|
|
abs INTEGER,
|
|
code INTEGER,
|
|
active INTEGER DEFAULT 1
|
|
);
|