dawarich/db/migrate/20250123151657_add_path_to_trips.rb
2025-01-24 12:01:54 +01:00

7 lines
161 B
Ruby

# frozen_string_literal: true
class AddPathToTrips < ActiveRecord::Migration[8.0]
def change
add_column :trips, :path, :line_string, srid: 3857
end
end