Update DeleteAccountPipeline to delete StatusHashtags

pull/1480/head
Daniel Supernault 6 years ago
parent 8ac2c9167c
commit 76c480bf85
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -80,8 +80,10 @@ class DeleteAccountPipeline implements ShouldQueue
Bookmark::whereProfileId($user->profile->id)->forceDelete();
EmailVerification::whereUserId($user->id)->forceDelete();
$id = $user->profile->id;
StatusHashtag::whereProfileId($id)->delete();
FollowRequest::whereFollowingId($id)->orWhere('follower_id', $id)->forceDelete();
Follower::whereProfileId($id)->orWhere('following_id', $id)->forceDelete();

Loading…
Cancel
Save