data_importer/db/migrate/20220406064613_inthewild_cve_exploits.rb

13 lines
339 B
Ruby
Raw Normal View History

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