mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
13 lines
261 B
Ruby
13 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreatePathsForTrips < ActiveRecord::Migration[8.0]
|
|
def up
|
|
Trip.find_each do |trip|
|
|
Trips::CalculatePathJob.perform_later(trip.id)
|
|
end
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|