mirror of
https://github.com/1f349/violet.git
synced 2024-11-12 22:41:39 +00:00
11 lines
246 B
MySQL
11 lines
246 B
MySQL
|
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
|
||
|
);
|