aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20180623083735_add_ssh_key_fields_to_terraform_aws_backends.rb
blob: 2a935305fc3f6e744f1166524762eeb0ce116918 (plain)
1
2
3
4
5
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