Initial commit

With instance configuration
This commit is contained in:
Bat
2018-04-22 14:35:37 +01:00
commit f060fa08af
18 changed files with 1234 additions and 0 deletions
@@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE instances;
@@ -0,0 +1,9 @@
-- Your SQL goes here
CREATE TABLE instances (
id SERIAL PRIMARY KEY,
local_domain VARCHAR NOT NULL,
public_domain VARCHAR NOT NULL,
name VARCHAR NOT NULL,
local BOOLEAN NOT NULL DEFAULT 'f',
blocked BOOLEAN NOT NULL DEFAULT 'f'
)