debian-mirror-gitlab/db/migrate/20201021152210_add_secret_detection_token_revocation_application_settings.rb
2021-01-29 00:20:46 +05:30

22 lines
992 B
Ruby

# 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