mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
15 lines
286 B
Ruby
15 lines
286 B
Ruby
class RemoveInvalidTopicUser < ActiveRecord::Migration[4.2]
|
|
def up
|
|
execute <<-SQL
|
|
DELETE FROM topic_users
|
|
USING topic_users tu
|
|
LEFT JOIN users u ON u.id = tu.user_id
|
|
WHERE u.id IS NULL
|
|
AND topic_users.id = tu.id
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|