canvas-lms/db/migrate/20120217214153_remove_delet...

9 lines
253 B
Ruby

class RemoveDeletedUserAccountAssociations < ActiveRecord::Migration
def self.up
UserAccountAssociation.where("user_id IN (SELECT id FROM users WHERE workflow_state IN ('deleted', 'creation_pending'))").delete_all
end
def self.down
end
end