]> git.openstreetmap.org Git - rails.git/blob - db/migrate/20121119165817_drop_nearby_place_from_notes.rb
Merge map.js.erb and leaflet.extend.js.erb
[rails.git] / db / migrate / 20121119165817_drop_nearby_place_from_notes.rb
1 class DropNearbyPlaceFromNotes < ActiveRecord::Migration
2   def up
3     remove_column :notes, :nearby_place
4   end
5
6   def down
7     add_column :notes, :nearby_place, :string
8   end
9 end