main
1class AddLocationToNeeds < ActiveRecord::Migration
2  def change
3    add_column :needs, :address, :string
4    add_column :needs, :latitude, :float
5    add_column :needs, :longitude, :float
6  end
7end