From 4deece673fdc7a553dae88e7895c4fe8af245d02 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Tue, 6 May 2025 17:01:55 +0300 Subject: [PATCH] Increase max_length of human_readable_id to 8. Updated the field definition of `human_readable_id` to allow up to 8 characters instead of 6. This change accommodates longer identifiers as required for recent updates. --- core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/models.py b/core/models.py index c3367d86..87abeddf 100644 --- a/core/models.py +++ b/core/models.py @@ -494,7 +494,7 @@ class Order(NiceModel): blank=True, ) human_readable_id = CharField( - max_length=6, + max_length=8, help_text=_("a human-readable identifier for the order"), verbose_name=_("human readable id"), unique=True,