From bc9809688159cd8684ecd9128eee5b63b26368b2 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Mon, 14 Nov 2022 16:06:16 -0500 Subject: [PATCH] ingress; first (#20) --- .../store/sql/postgresql/002_ingress_selection.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 controller/store/sql/postgresql/002_ingress_selection.sql diff --git a/controller/store/sql/postgresql/002_ingress_selection.sql b/controller/store/sql/postgresql/002_ingress_selection.sql new file mode 100644 index 00000000..e69b9a30 --- /dev/null +++ b/controller/store/sql/postgresql/002_ingress_selection.sql @@ -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) +); \ No newline at end of file