mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-14 22:15:55 +00:00
Allow users to specify custom hostnames
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ALTER TABLE users ADD can_specify_hostnames BOOLEAN DEFAULT 1;
|
||||
7
database/migrations/06_create_hostnames_table.sql
Normal file
7
database/migrations/06_create_hostnames_table.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS hostnames (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
user_id INTEGER NOT NULL,
|
||||
hostname STRING NOT NULL,
|
||||
created_at DATETIME,
|
||||
updated_at DATETIME
|
||||
)
|
||||
Reference in New Issue
Block a user