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

20210707171554_create_vulnerability_flags.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf33963b08f326fef7ce9320103d3a26a42281f1 (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
# frozen_string_literal: true

class CreateVulnerabilityFlags < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  FALSE_POSITIVE_ENUM_VALUE = 0

  disable_ddl_transaction!

  def up
    create_table_with_constraints :vulnerability_flags do |t|
      t.timestamps_with_timezone null: false

      t.references :vulnerability_occurrence, null: false, foreign_key: { on_delete: :cascade }

      t.integer :flag_type, limit: 2, null: false, default: FALSE_POSITIVE_ENUM_VALUE

      t.text :origin, null: false
      t.text :description, null: false

      t.text_limit :origin, 255
      t.text_limit :description, 1024
    end
  end

  def down
    drop_table :vulnerability_flags
  end
end