class CreateProducts < ActiveRecord::Migration def self.up create_table :products do |t| t.references :category t.string :name t.string :image_url t.integer :price t.timestamps end end def self.down drop_table :products end end