store.Frontend (#98, #88)

This commit is contained in:
Michael Quigley
2022-11-17 14:25:35 -05:00
parent f193976a50
commit 1fcb496321
7 changed files with 75 additions and 5 deletions

View File

@ -2,7 +2,7 @@
create table frontends (
id serial primary key,
environment_id integer references environments(id),
environment_id integer not null references environments(id),
z_id varchar(32) not null unique,
name varchar(64) unique,
created_at timestamptz not null default(current_timestamp),