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

18 lines
450 B
Ruby

# frozen_string_literal: true
class AddTextLimitToSecretDetectionRevocationTokenTypesApplicationSettings < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_text_limit :application_settings, :secret_detection_revocation_token_types_url, 255
end
def down
remove_text_limit :application_settings, :secret_detection_revocation_token_types_url
end
end