Increase max_length of human_readable_id to 8.

Updated the `human_readable_id` field in the `Order` model to support a maximum length of 8 instead of 6. Removed the redundant migration file `0019_alter_order_human_readable_id.py` for cleanup.
This commit is contained in:
Egor Pavlovich Gorbunov 2025-05-06 17:06:39 +03:00
parent dc9effdd5b
commit ca60bf09a6
3 changed files with 2 additions and 21 deletions

View file

@ -14,6 +14,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='order',
name='human_readable_id',
field=models.CharField(default=core.utils.generate_human_readable_id, help_text='a human-readable identifier for the order', max_length=6, verbose_name='human readable id'),
field=models.CharField(default=core.utils.generate_human_readable_id, help_text='a human-readable identifier for the order', max_length=8, verbose_name='human readable id'),
),
]

View file

@ -14,6 +14,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='order',
name='human_readable_id',
field=models.CharField(default=core.utils.generate_human_readable_id, help_text='a human-readable identifier for the order', max_length=6, unique=True, verbose_name='human readable id'),
field=models.CharField(default=core.utils.generate_human_readable_id, help_text='a human-readable identifier for the order', max_length=8, unique=True, verbose_name='human readable id'),
),
]

View file

@ -1,19 +0,0 @@
# Generated by Django 5.1.8 on 2025-05-06 14:01
import core.utils
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0018_alter_order_human_readable_id'),
]
operations = [
migrations.AlterField(
model_name='order',
name='human_readable_id',
field=models.CharField(default=core.utils.generate_human_readable_id, help_text='a human-readable identifier for the order', max_length=8, unique=True, verbose_name='human readable id'),
),
]