canvas-lms/db/migrate/20120224194847_remove_unuse...

12 lines
279 B
Ruby

class RemoveUnusedNotificationPolicies < ActiveRecord::Migration
tag :postdeploy
def self.up
ids = Notification.where(:category => ['Student Message', 'Files']).pluck(:id)
NotificationPolicy.where(:notification_id => ids).delete_all
end
def self.down
end
end