agenda-libre-ruby/db/migrate/20140823111115_add_address_...

9 lines
244 B
Ruby
Raw Normal View History

2014-08-23 16:59:42 +02:00
# Add geocoding to events
class AddAddressLatitudeAndLongitudeToEvent < ActiveRecord::Migration
def change
add_column :events, :address, :text
add_column :events, :latitude, :float
add_column :events, :longitude, :float
end
end