more cleanups and polish for sharing and reserving (#122, #41)

This commit is contained in:
Michael Quigley
2022-11-30 14:38:49 -05:00
parent 3f5c5003de
commit 301249fe4a
18 changed files with 227 additions and 20 deletions

View File

@ -4,7 +4,7 @@ create table frontends (
id serial primary key,
environment_id integer not null references environments(id),
token varchar(32) not null unique,
z_id varchar(32) not null unique,
z_id varchar(32) not null,
public_name varchar(64) unique,
reserved boolean not null default(false),
created_at timestamptz not null default(current_timestamp),