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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200825084819_create_security_findings_table.rb')
-rw-r--r--db/migrate/20200825084819_create_security_findings_table.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/db/migrate/20200825084819_create_security_findings_table.rb b/db/migrate/20200825084819_create_security_findings_table.rb
deleted file mode 100644
index d44b4671e2f..00000000000
--- a/db/migrate/20200825084819_create_security_findings_table.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-class CreateSecurityFindingsTable < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- unless table_exists?(:security_findings)
- create_table :security_findings do |t|
- t.references :scan, null: false
- t.references :scanner, null: false
- t.integer :severity, limit: 2, index: true, null: false
- t.integer :confidence, limit: 2, index: true, null: false
- t.text :project_fingerprint, index: true, null: false
- end
- end
-
- add_text_limit :security_findings, :project_fingerprint, 40
- end
-
- def down
- drop_table :security_findings
- end
-end