11 lines
291 B
Ruby
11 lines
291 B
Ruby
![]() |
class RemoveBogusEnrollmentAssociatedUserIds < ActiveRecord::Migration
|
||
|
tag :postdeploy
|
||
|
|
||
|
def self.up
|
||
|
DataFixup::RemoveBogusEnrollmentAssociatedUserIds.send_later_if_production_enqueue_args(:run, :priority => Delayed::LOW_PRIORITY, :max_attempts => 1)
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
end
|
||
|
end
|