This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20130129010625_remove_pm_reflections.rb
2013-02-05 14:16:51 -05:00

9 lines
213 B
Ruby

class RemovePmReflections < ActiveRecord::Migration
def up
execute 'delete from topic_links where link_topic_id in (select id from topics where archetype = \'private_message\') '
end
def down
end
end