13 lines
314 B
Ruby
13 lines
314 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateTrickestPocCves < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :trickest_poc_cves do |t|
|
|
t.string :cve_id
|
|
t.index :cve_id, unique: true
|
|
t.string :cve_url
|
|
t.string :description
|
|
t.string :poc_links, array: true
|
|
end
|
|
end
|
|
end
|