From 1be917fb9077d856794b736f7d75fb863c53fe46 Mon Sep 17 00:00:00 2001 From: "Jamie (Bear) Murphy" <1613241+ITJamie@users.noreply.github.com> Date: Tue, 3 Mar 2026 13:10:04 +0000 Subject: [PATCH] Add changelog message documentation in custom scripts Add changelog message documentation in custom scripts --- docs/customization/custom-scripts.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/customization/custom-scripts.md b/docs/customization/custom-scripts.md index c2e0620ce..0cf5b7844 100644 --- a/docs/customization/custom-scripts.md +++ b/docs/customization/custom-scripts.md @@ -215,6 +215,7 @@ if obj.pk and hasattr(obj, 'snapshot'): obj.snapshot() obj.property = "New Value" +obj._changelog_message = 'Example Message Text' obj.full_clean() obj.save() ```