femslash-city/migrations/062_fix_latlng.rb

13 lines
250 B
Ruby
Raw Normal View History

Sequel.migration do
up {
drop_column :stat_locations, :latitude
drop_column :stat_locations, :longitude
add_column :stat_locations, :latitude, :float
add_column :stat_locations, :longitude, :float
}
down {
# meh.
}
end