10 lines
247 B
Ruby
10 lines
247 B
Ruby
class CreateTrickestPocCves < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :trickest_poc_cves do |t|
|
|
t.string :cve_id
|
|
t.string :cve_url
|
|
t.string :description
|
|
t.string :poc_links, array: true
|
|
end
|
|
end
|
|
end
|