dawarich/db/migrate/20250123151657_add_path_to_trips.rb

8 lines
161 B
Ruby
Raw Normal View History

2025-01-24 06:01:54 -05:00
# frozen_string_literal: true
class AddPathToTrips < ActiveRecord::Migration[8.0]
def change
add_column :trips, :path, :line_string, srid: 3857
end
end