2022-04-06 02:08:19 -05:00
|
|
|
class InthewildCveExploits < ActiveRecord::Migration[7.0]
|
|
|
|
def change
|
|
|
|
create_table :inthewild_cve_exploits do |t|
|
|
|
|
t.string :cve_id
|
2022-04-06 02:21:18 -05:00
|
|
|
# i think maybe making a string is better for now for the earliestReport data
|
|
|
|
t.string :earliest_report
|
|
|
|
#t.date :earliest_report
|
2022-04-06 02:08:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|