class CreateBrands < ActiveRecord::Migration def change create_table :brands do |t| t.string :name end add_column :items, :brand_id, :integer end end