mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
11 lines
238 B
Ruby
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
|