mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
14 lines
276 B
Ruby
14 lines
276 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class MigratePlacesLonlat < ActiveRecord::Migration[8.0]
|
||
|
|
def up
|
||
|
|
User.find_each do |user|
|
||
|
|
DataMigrations::MigratePlacesLonlatJob.perform_later(user.id)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
raise ActiveRecord::IrreversibleMigration
|
||
|
|
end
|
||
|
|
end
|