mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
12 lines
250 B
Ruby
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
|