1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-14 08:27:19 +02:00
neocities/migrations/062_fix_latlng.rb
2015-05-02 02:34:24 -07:00

12 lines
250 B
Ruby

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