9 lines
190 B
Ruby
9 lines
190 B
Ruby
|
class InthewildCveExploits < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
create_table :inthewild_cve_exploits do |t|
|
||
|
t.string :cve_id
|
||
|
t.date :earliest_report
|
||
|
end
|
||
|
end
|
||
|
end
|