You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20160606064856_delete_anony...

9 lines
170 B

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