canvas-lms/db/migrate/20150223211234_delete_faceb...

14 lines
270 B
Ruby

class DeleteFacebookChannels < ActiveRecord::Migration
tag :postdeploy
def up
DataFixup::DeleteFacebookChannels.send_later_if_production_enqueue_args(
:run,
:priority => Delayed::LOWER_PRIORITY,
:max_attempts => 1)
end
def down
end
end