debian-mirror-gitlab/db/migrate/20200716120419_add_text_limit_on_entity_path_to_audit_events.rb

18 lines
341 B
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
class AddTextLimitOnEntityPathToAuditEvents < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_text_limit :audit_events, :entity_path, 5_500
end
def down
remove_text_limit :audit_events, :entity_path
end
end