1class AddGeolocationToPhotos < ActiveRecord::Migration 2 def change 3 add_column :photos, :latitude, :float 4 add_column :photos, :longitude, :float 5 end 6end