mirror of
https://github.com/openziti/zrok.git
synced 2024-11-23 08:33:52 +01:00
ingress; first (#20)
This commit is contained in:
parent
61836ccad2
commit
bc98096881
@ -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)
|
||||||
|
);
|
Loading…
Reference in New Issue
Block a user