2017-08-31 12:06:56 +08:00
|
|
|
class RemovePmReflections < ActiveRecord::Migration[4.2]
|
2013-02-06 03:16:51 +08: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
|