change order list serialzier class
This commit is contained in:
18
core/apps/orders/migrations/0021_party_currency.py
Normal file
18
core/apps/orders/migrations/0021_party_currency.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.4 on 2025-08-23 11:41
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('orders', '0020_party_discount_currency'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='party',
|
||||
name='currency',
|
||||
field=models.CharField(choices=[('usd', 'usd'), ('uzs', 'uzs')], default='uzs', max_length=3),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user