mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
9 lines
218 B
Ruby
9 lines
218 B
Ruby
class RemovePmReflections < ActiveRecord::Migration[4.2]
|
|
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
|