aboutsummaryrefslogtreecommitdiff
path: root/db/structure.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/structure.sql')
-rw-r--r--db/structure.sql7
1 files changed, 5 insertions, 2 deletions
diff --git a/db/structure.sql b/db/structure.sql
index 342e36c..f766762 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -432,7 +432,9 @@ CREATE TABLE public.terraform_aws_backends (
updated_at timestamp without time zone NOT NULL,
domain character varying,
route_53_zone_id character varying NOT NULL,
- vpc_id character varying NOT NULL
+ vpc_id character varying NOT NULL,
+ ssh_public_key character varying,
+ ssh_private_key character varying
);
@@ -874,6 +876,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20180601182655'),
('20180603120426'),
('20180621065525'),
-('20180621220505');
+('20180621220505'),
+('20180623083735');