dawarich/db/migrate/20250303194009_add_lonlat_to_places.rb

8 lines
170 B
Ruby
Raw Normal View History

2025-03-03 14:50:49 -05:00
# frozen_string_literal: true
class AddLonlatToPlaces < ActiveRecord::Migration[8.0]
def change
add_column :places, :lonlat, :st_point, geographic: true
end
end