dawarich/db/data/20250516180933_set_points_country_ids.rb
2025-05-16 18:51:48 +02:00

11 lines
238 B
Ruby

# frozen_string_literal: true
class SetPointsCountryIds < ActiveRecord::Migration[8.0]
def up
DataMigrations::StartSettingsPointsCountryIdsJob.perform_later
end
def down
raise ActiveRecord::IrreversibleMigration
end
end