mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
f060fa08af
With instance configuration
9 lines
255 B
SQL
9 lines
255 B
SQL
-- 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'
|
|
)
|