9 lines
185 B
Ruby
9 lines
185 B
Ruby
class DropNearbyPlaceFromNotes < ActiveRecord::Migration[4.2]
|
|
def up
|
|
remove_column :notes, :nearby_place
|
|
end
|
|
|
|
def down
|
|
add_column :notes, :nearby_place, :string
|
|
end
|
|
end
|