dawarich/db/data/20250123151849_create_paths_for_trips.rb

14 lines
261 B
Ruby
Raw Normal View History

2025-01-24 06:01:54 -05:00
# frozen_string_literal: true
class CreatePathsForTrips < ActiveRecord::Migration[8.0]
def up
2025-01-24 09:58:44 -05:00
Trip.find_each do |trip|
2025-05-15 16:58:04 -04:00
Trips::CalculatePathJob.perform_later(trip.id)
2025-01-24 09:58:44 -05:00
end
2025-01-24 06:01:54 -05:00
end
def down
raise ActiveRecord::IrreversibleMigration
end
end