dawarich/db/migrate/20250221181805_add_lonlat_to_points.rb
2025-02-23 22:59:14 +01:00

7 lines
170 B
Ruby

# frozen_string_literal: true
class AddLonlatToPoints < ActiveRecord::Migration[8.0]
def change
add_column :points, :lonlat, :st_point, geographic: true
end
end