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

20200504191813_add_fingerprint_to_events.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1171d548f102ab88f01b4009f85047822576055f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless column_exists?(:events, :fingerprint)
      with_lock_retries { add_column :events, :fingerprint, :binary }
    end

    unless check_constraint_exists?(:events, constraint_name)
      add_check_constraint(
        :events,
        "octet_length(fingerprint) <= 128",
        constraint_name,
        validate: true
      )
    end
  end

  def down
    remove_check_constraint(:events, constraint_name)

    if column_exists?(:events, :fingerprint)
      with_lock_retries { remove_column :events, :fingerprint }
    end
  end

  def constraint_name
    check_constraint_name(:events, :fingerprint, 'max_length')
  end
end