2022-04-07 04:32:08 -05:00
|
|
|
class CreateCvemonCves < ActiveRecord::Migration[7.0]
|
|
|
|
def change
|
|
|
|
create_table :cvemon_cves do |t|
|
|
|
|
t.string :cve_id
|
|
|
|
t.index :cve_id, unique: true
|
|
|
|
t.string :urls, array: true
|
2022-04-19 00:18:29 -05:00
|
|
|
t.timestamps
|
2022-04-07 04:32:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|