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

11 lines
291 B
Ruby

class RemoveDeletedUserAccountAssociations < ActiveRecord::Migration
tag :predeploy
def self.up
UserAccountAssociation.where("user_id IN (SELECT id FROM #{User.quoted_table_name} WHERE workflow_state IN ('deleted', 'creation_pending'))").delete_all
end
def self.down
end
end