aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20180623083735_add_ssh_key_fields_to_terraform_aws_backends.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20180623083735_add_ssh_key_fields_to_terraform_aws_backends.rb')
-rw-r--r--db/migrate/20180623083735_add_ssh_key_fields_to_terraform_aws_backends.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20180623083735_add_ssh_key_fields_to_terraform_aws_backends.rb b/db/migrate/20180623083735_add_ssh_key_fields_to_terraform_aws_backends.rb
new file mode 100644
index 0000000..2a93530
--- /dev/null
+++ b/db/migrate/20180623083735_add_ssh_key_fields_to_terraform_aws_backends.rb
@@ -0,0 +1,6 @@
+class AddSshKeyFieldsToTerraformAwsBackends < ActiveRecord::Migration[5.1]
+ def change
+ add_column :terraform_aws_backends, :ssh_public_key, :string
+ add_column :terraform_aws_backends, :ssh_private_key, :string
+ end
+end