12 lines
265 B
Ruby
12 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|