summaryrefslogtreecommitdiff
path: root/db/migrate/20200715124210_add_target_details_to_audit_event.rb
blob: 65efe24a1e8275d913c0026fe2fd1a9097f7fe62 (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 AddTargetDetailsToAuditEvent < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      # rubocop:disable Migration/AddLimitToTextColumns
      add_column(:audit_events, :target_details, :text)
      # rubocop:enable Migration/AddLimitToTextColumns
    end
  end

  def down
    with_lock_retries do
      remove_column(:audit_events, :target_details)
    end
  end
end