File size: 165 Bytes
f5071ca
 
 
 
 
 
1
2
3
4
5
6
7
class RenameLatitudeToLat < ActiveRecord::Migration[5.2]
  def change
    rename_column :spots, :latitude, :lat
    rename_column :spots, :longitude, :lng
  end
end