1class AddYelpIdToGyms < ActiveRecord::Migration 2 def change 3 add_column :gyms, :yelp_id, :string 4 add_index :gyms, :yelp_id 5 end 6end