summaryrefslogtreecommitdiff
path: root/db/migrate/20191103202505_add_eks_credentials_to_application_settings.rb
blob: 5ed3e7edb3c9ff88f07c5e8947f209886627ebd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class AddEksCredentialsToApplicationSettings < ActiveRecord::Migration[5.2]
  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  # rubocop:disable Migration/PreventStrings
  # rubocop:disable Migration/AddLimitToTextColumns
  def change
    add_column :application_settings, :eks_integration_enabled, :boolean, null: false, default: false
    add_column :application_settings, :eks_account_id, :string, limit: 128
    add_column :application_settings, :eks_access_key_id, :string, limit: 128
    add_column :application_settings, :encrypted_eks_secret_access_key_iv, :string, limit: 255
    add_column :application_settings, :encrypted_eks_secret_access_key, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
  # rubocop:enable Migration/PreventStrings
end