From fa845ada290cfd953dcf5b347464df16827ddf92 Mon Sep 17 00:00:00 2001 From: Andrey Smakotin Date: Sat, 29 Nov 2025 02:01:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=B8=D0=B3=D1=80=D0=B0=D1=86=D0=B8?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...istoricalorder_discount_amount_and_more.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 myproject/orders/migrations/0005_remove_historicalorder_discount_amount_and_more.py 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', + ), + ]