summaryrefslogtreecommitdiff
path: root/db/migrate/20210329191850_add_finding_signature_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210329191850_add_finding_signature_table.rb')
-rw-r--r--db/migrate/20210329191850_add_finding_signature_table.rb40
1 files changed, 40 insertions, 0 deletions
diff --git a/db/migrate/20210329191850_add_finding_signature_table.rb b/db/migrate/20210329191850_add_finding_signature_table.rb
new file mode 100644
index 00000000000..74a12d54a8e
--- /dev/null
+++ b/db/migrate/20210329191850_add_finding_signature_table.rb
@@ -0,0 +1,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