mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
8 lines
213 B
Ruby
8 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
|