From df172b4611d45d8de321042fd4d2ef026108d2ed Mon Sep 17 00:00:00 2001 From: Chris Oliver Date: Mon, 29 Jan 2024 13:39:47 -0600 Subject: [PATCH] Update upgrade guide for has_noticed_notifications in 2.1 --- UPGRADE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPGRADE.md b/UPGRADE.md index 187e0820..46436eda 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -261,7 +261,7 @@ end ### Has Noticed Notifications -`has_noticed_notifications` has been removed in favor of the `record` polymorphic relationship that can be directly queried with ActiveRecord. You can add the necessary json query to your model(s) to restore the json query if needed. +`has_noticed_notifications` has been superceded with a `record` polymorphic relationship that can be directly associated and queried with ActiveRecord. We recommend backfilling the `record` association if your notification params has a primary related record and switching to a has_many association instead.