From 807c10c5652423be96d125a502be222aa8d80119 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Thu, 3 May 2018 21:34:08 +0100 Subject: Add extra fields to the Terraform AWS backend --- .../20180410192329_add_route53_zone_id_to_terraform_aws_backends.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20180410192329_add_route53_zone_id_to_terraform_aws_backends.rb (limited to 'db/migrate/20180410192329_add_route53_zone_id_to_terraform_aws_backends.rb') diff --git a/db/migrate/20180410192329_add_route53_zone_id_to_terraform_aws_backends.rb b/db/migrate/20180410192329_add_route53_zone_id_to_terraform_aws_backends.rb new file mode 100644 index 0000000..6bb7186 --- /dev/null +++ b/db/migrate/20180410192329_add_route53_zone_id_to_terraform_aws_backends.rb @@ -0,0 +1,5 @@ +class AddRoute53ZoneIdToTerraformAwsBackends < ActiveRecord::Migration[5.1] + def change + add_column :terraform_aws_backends, :route_53_zone_id, :string, null: false + end +end -- cgit v1.2.3