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

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

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    create_table :vulnerability_remediations, if_not_exists: true do |t|
      t.timestamps_with_timezone

      t.integer :file_store, limit: 2
      t.text :summary, null: false
      t.text :file, null: false
    end

    add_text_limit :vulnerability_remediations, :summary, 200
    add_text_limit :vulnerability_remediations, :file, 255
  end

  def down
    drop_table :vulnerability_remediations
  end
end