summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200810101029_add_text_limit_to_audit_event_target_type.rb
blob: 2a5ea9cd2459f5a78e0e1ab13435528b80e60908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class AddTextLimitToAuditEventTargetType < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers
  DOWNTIME = false
  SOURCE_TABLE_NAME = 'audit_events'
  PARTITIONED_TABLE_NAME = 'audit_events_part_5fc467ac26'

  disable_ddl_transaction!

  def up
    add_text_limit(SOURCE_TABLE_NAME, :target_type, 255)
    add_text_limit(PARTITIONED_TABLE_NAME, :target_type, 255)
  end

  def down
    remove_text_limit(SOURCE_TABLE_NAME, :target_type)
    remove_text_limit(PARTITIONED_TABLE_NAME, :target_type)
  end
end