Fix old migration trying to use new column due to default status scope (#12095)

Fix #12087
lolsob-rspec
Eugen Rochko 2019-10-07 06:05:14 +02:00 committed by GitHub
parent 7e13c7c710
commit 1da1a9878f
1 changed files with 1 additions and 1 deletions

View File

@ -52,6 +52,6 @@ class MigrateAccountConversations < ActiveRecord::Migration[5.2]
end
def notifications_about_direct_statuses
Notification.joins(mention: :status).where(activity_type: 'Mention', statuses: { visibility: :direct })
Notification.joins('INNER JOIN mentions ON mentions.id = notifications.activity_id INNER JOIN statuses ON statuses.id = mentions.status_id').where(activity_type: 'Mention', statuses: { visibility: :direct })
end
end