This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20160514100852_remove_invalid_topic_user.rb

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