mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
8 lines
194 B
SQL
8 lines
194 B
SQL
CREATE TABLE IF NOT EXISTS subdomains (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
user_id INTEGER NOT NULL,
|
|
subdomain STRING NOT NULL,
|
|
created_at DATETIME,
|
|
updated_at DATETIME
|
|
)
|