diff --git a/myproject/orders/migrations/0005_remove_historicalorder_discount_amount_and_more.py b/myproject/orders/migrations/0005_remove_historicalorder_discount_amount_and_more.py new file mode 100644 index 0000000..0519d0b --- /dev/null +++ b/myproject/orders/migrations/0005_remove_historicalorder_discount_amount_and_more.py @@ -0,0 +1,21 @@ +# Generated by Django 5.0.10 on 2025-11-28 23:00 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('orders', '0004_refactor_models_and_add_payment_method'), + ] + + operations = [ + migrations.RemoveField( + model_name='historicalorder', + name='discount_amount', + ), + migrations.RemoveField( + model_name='order', + name='discount_amount', + ), + ]