1class AddIndexes < ActiveRecord::Migration 2 def up 3 add_index(:photos, :creation_id) 4 add_index(:creations, :created_at) 5 end 6 7 def down 8 end 9end