summaryrefslogtreecommitdiff
path: root/db/migrate/20190929180751_create_vulnerabilities.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190929180751_create_vulnerabilities.rb')
-rw-r--r--db/migrate/20190929180751_create_vulnerabilities.rb41
1 files changed, 0 insertions, 41 deletions
diff --git a/db/migrate/20190929180751_create_vulnerabilities.rb b/db/migrate/20190929180751_create_vulnerabilities.rb
deleted file mode 100644
index e4c53b1063a..00000000000
--- a/db/migrate/20190929180751_create_vulnerabilities.rb
+++ /dev/null
@@ -1,41 +0,0 @@
-# frozen_string_literal: true
-
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class CreateVulnerabilities < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- # rubocop:disable Migration/AddLimitToTextColumns
- def change
- create_table :vulnerabilities do |t|
- t.bigint "milestone_id"
- t.bigint "epic_id"
- t.bigint "project_id", null: false
- t.bigint "author_id", null: false
- t.bigint "updated_by_id"
- t.bigint "last_edited_by_id"
- t.bigint "start_date_sourcing_milestone_id"
- t.bigint "due_date_sourcing_milestone_id"
- t.bigint "closed_by_id"
- t.datetime_with_timezone "last_edited_at"
- t.datetime_with_timezone "created_at", null: false
- t.datetime_with_timezone "updated_at", null: false
- t.datetime_with_timezone "closed_at"
- t.date "start_date"
- t.date "due_date"
- t.integer "state", limit: 2, default: 1, null: false # initially: open, closed
- t.integer "severity", limit: 2, null: false # auto-calculated as highest-severity finding, but overrideable
- t.integer "confidence", limit: 2, null: false # auto-calculated as lowest-confidence finding, but overrideable
- t.boolean "severity_overridden", default: false
- t.boolean "confidence_overridden", default: false
- t.string "title", limit: 255, null: false # rubocop:disable Migration/PreventStrings
- t.text "title_html", null: false
- t.text "description"
- t.text "description_html"
- end
- end
- # rubocop:enable Migration/AddLimitToTextColumns
-end