summaryrefslogtreecommitdiff
path: root/db/migrate/20201021152210_add_secret_detection_token_revocation_application_settings.rb
blob: 6334dcd8c1a7bc420cd2e6c8d37d69d6e2989cac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class AddSecretDetectionTokenRevocationApplicationSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    add_column :application_settings, :secret_detection_token_revocation_enabled, :boolean, default: false, null: false
    add_column :application_settings, :secret_detection_token_revocation_url, :text, null: true # rubocop:disable Migration/AddLimitToTextColumns

    add_column :application_settings, :encrypted_secret_detection_token_revocation_token, :text
    add_column :application_settings, :encrypted_secret_detection_token_revocation_token_iv, :text
  end

  def down
    remove_column :application_settings, :secret_detection_token_revocation_enabled
    remove_column :application_settings, :secret_detection_token_revocation_url

    remove_column :application_settings, :encrypted_secret_detection_token_revocation_token
    remove_column :application_settings, :encrypted_secret_detection_token_revocation_token_iv
  end
end