From c856d5d50a9342bb89c53b51361d880d83ba53c2 Mon Sep 17 00:00:00 2001 From: Andrey Smakotin Date: Sat, 22 Nov 2025 18:00:13 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=B8=D0=B3=D1=80=D0=B0=D1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...customers_c_loyalty_5162a0_idx_and_more.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 myproject/customers/migrations/0003_remove_customer_customers_c_loyalty_5162a0_idx_and_more.py diff --git a/myproject/customers/migrations/0003_remove_customer_customers_c_loyalty_5162a0_idx_and_more.py b/myproject/customers/migrations/0003_remove_customer_customers_c_loyalty_5162a0_idx_and_more.py new file mode 100644 index 0000000..475ba74 --- /dev/null +++ b/myproject/customers/migrations/0003_remove_customer_customers_c_loyalty_5162a0_idx_and_more.py @@ -0,0 +1,21 @@ +# Generated by Django 5.0.10 on 2025-11-22 13:57 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('customers', '0002_customer_is_system_customer'), + ] + + operations = [ + migrations.RemoveIndex( + model_name='customer', + name='customers_c_loyalty_5162a0_idx', + ), + migrations.RemoveField( + model_name='customer', + name='loyalty_tier', + ), + ]