socialforge/db/migrate/20160606064856_delete_anony...

9 lines
170 B
Ruby

class DeleteAnonymousOrg < ActiveRecord::Migration
def up
OrgDocumentComment.where(:organization_id => 23, :creator_id => 2).delete_all
end
def down
end
end