28 lines
709 B
Ruby
28 lines
709 B
Ruby
|
# 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
|