discourse/db/migrate/20130129010625_remove_pm_re...

9 lines
218 B
Ruby
Raw Normal View History

class RemovePmReflections < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
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