2022-04-19 02:37:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-04-07 01:51:44 -05:00
|
|
|
class CreateTrickestPocCves < ActiveRecord::Migration[7.0]
|
|
|
|
def change
|
|
|
|
create_table :trickest_poc_cves do |t|
|
|
|
|
t.string :cve_id
|
2022-04-22 12:12:45 -05:00
|
|
|
t.index :cve_id, unique: true
|
2022-04-07 01:51:44 -05:00
|
|
|
t.string :cve_url
|
|
|
|
t.string :description
|
|
|
|
t.string :poc_links, array: true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|