add: add new field to order model

This commit is contained in:
behruz-dev
2025-08-27 14:21:14 +05:00
parent e4ff61c4bd
commit 7cdd43da27
4 changed files with 33 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2 on 2025-08-27 14:19
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('orders', '0002_order_location_en_order_location_ru_and_more'),
]
operations = [
migrations.AddField(
model_name='order',
name='order_number',
field=models.PositiveBigIntegerField(default=1),
),
]