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

20210329191850_add_finding_signature_table.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74a12d54a8e2d316c7b6410a90f7b4be520df9b1 (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
37
38
39
40
# frozen_string_literal: true

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

  DOWNTIME = false

  SIGNATURE_IDX = :idx_vuln_signatures_on_occurrences_id_and_signature_sha
  UNIQ_IDX = :idx_vuln_signatures_uniqueness_signature_sha

  def up
    with_lock_retries do
      create_table :vulnerability_finding_signatures do |t|
        t.references :finding,
          index: true,
          null: false,
          foreign_key: { to_table: :vulnerability_occurrences, column: :finding_id, on_delete: :cascade }

        t.timestamps_with_timezone null: false

        t.integer :algorithm_type, null: false, limit: 2
        t.binary :signature_sha, null: false

        t.index %i[finding_id signature_sha],
          name: SIGNATURE_IDX,
          unique: true # only one link should exist between occurrence and the signature

        t.index %i[finding_id algorithm_type signature_sha],
          name: UNIQ_IDX,
          unique: true # these should be unique
      end
    end
  end

  def down
    with_lock_retries do
      drop_table :vulnerability_finding_signatures
    end
  end
end