Merge pull request #7009 from SuperTux88/fix-started-sharing-notifications-without-contact
Remove started sharing notifications where the contact doesn't exist
This commit is contained in:
commit
615782877f
2 changed files with 12 additions and 1 deletions
|
|
@ -0,0 +1,11 @@
|
|||
class RemoveStartedSharingNotificationsWithoutContact < ActiveRecord::Migration
|
||||
class Notification < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def up
|
||||
Notification.where(type: "Notifications::StartedSharing", target_type: "Person")
|
||||
.joins("INNER JOIN people ON people.id = notifications.target_id")
|
||||
.joins("LEFT OUTER JOIN contacts ON contacts.person_id = people.id")
|
||||
.delete_all("contacts.id IS NULL")
|
||||
end
|
||||
end
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20160813115514) do
|
||||
ActiveRecord::Schema.define(version: 20160820181334) do
|
||||
|
||||
create_table "account_deletions", force: :cascade do |t|
|
||||
t.string "diaspora_handle", limit: 255
|
||||
|
|
|
|||
Loading…
Reference in a new issue