diff --git a/core/apps/orders/migrations/0028_alter_order_quantity.py b/core/apps/orders/migrations/0028_alter_order_quantity.py new file mode 100644 index 0000000..029bab7 --- /dev/null +++ b/core/apps/orders/migrations/0028_alter_order_quantity.py @@ -0,0 +1,18 @@ +# Generated by Django 5.2.4 on 2025-10-08 14:30 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('orders', '0027_alter_partyamount_calculated_amount_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='order', + name='quantity', + field=models.FloatField(default=1), + ), + ]