canvas-lms/db/migrate/20120316233922_exclude_dele...

11 lines
218 B
Ruby

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