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.
This commit is contained in:
parent
0c1caa422c
commit
4deece673f
1 changed files with 1 additions and 1 deletions
|
|
@ -494,7 +494,7 @@ class Order(NiceModel):
|
||||||
blank=True,
|
blank=True,
|
||||||
)
|
)
|
||||||
human_readable_id = CharField(
|
human_readable_id = CharField(
|
||||||
max_length=6,
|
max_length=8,
|
||||||
help_text=_("a human-readable identifier for the order"),
|
help_text=_("a human-readable identifier for the order"),
|
||||||
verbose_name=_("human readable id"),
|
verbose_name=_("human readable id"),
|
||||||
unique=True,
|
unique=True,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue