summaryrefslogtreecommitdiff
path: root/db/migrate/20200716120419_add_text_limit_on_entity_path_to_audit_events.rb
blob: 0dea811f41cbe9c4aa3562133194c124e2b7b900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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