class CreateVulnerableSoftwares < ActiveRecord::Migration def self.up create_table :vulnerable_softwares do |t| t.integer :nvd_entry_id t.integer :product_id t.timestamps end add_index :vulnerable_softwares, :nvd_entry_id add_index :vulnerable_softwares, :product_id end def self.down drop_table :vulnerable_softwares end end