canvas-lms/db/migrate/20160819193534_fix_deleted_...

10 lines
187 B
Ruby

class FixDeletedEnrollmentStates < ActiveRecord::Migration
tag :postdeploy
def up
DataFixup::FixDeletedEnrollmentStates.send_later_if_production(:run)
end
def down
end
end