ingress; first (#20)

This commit is contained in:
Michael Quigley 2022-11-14 16:06:16 -05:00
parent 61836ccad2
commit bc98096881
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -0,0 +1,9 @@
-- +migrate Up
create table ingress (
id serial primary key,
account_id integer references accounts(id),
z_id varchar(32) not null unique,
created_at timestamptz not null default(current_timestamp),
updated_at timestamptz not null default(current_timestamp)
);