Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200623090030_add_author_name_to_audit_event.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b45503189aaa581e2987668d70dac2500e60505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class AddAuthorNameToAuditEvent < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  disable_ddl_transaction!

  def up
    unless column_exists?(:audit_events, :author_name)
      with_lock_retries do
        add_column :audit_events, :author_name, :text
      end
    end

    add_text_limit :audit_events, :author_name, 255
  end

  def down
    remove_column :audit_events, :author_name
  end
end