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:
Dennis Schubert 2016-08-21 14:37:06 +02:00
commit 615782877f
No known key found for this signature in database
GPG key ID: 5A0304BEA7966D7E
2 changed files with 12 additions and 1 deletions

View file

@ -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

View file

@ -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