dawarich/db/data/20250303194123_migrate_places_lonlat.rb

14 lines
276 B
Ruby
Raw Permalink Normal View History

2025-03-03 14:50:49 -05:00
# 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