diff --git a/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py b/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py index 44a56555..8c777d35 100644 --- a/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py +++ b/core/migrations/0045_alter_product_name_alter_product_name_ar_ar_and_more.py @@ -5,7 +5,6 @@ from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [ ("core", "0044_vendor_last_processing_response"), migrations.swappable_dependency(settings.AUTH_USER_MODEL), @@ -332,27 +331,19 @@ class Migration(migrations.Migration): ), migrations.AddIndex( model_name="order", - index=models.Index( - fields=["user", "status"], name="core_order_user_id_4407f8_idx" - ), + index=models.Index(fields=["user", "status"], name="core_order_user_id_4407f8_idx"), ), migrations.AddIndex( model_name="order", - index=models.Index( - fields=["status", "buy_time"], name="core_order_status_4a088a_idx" - ), + index=models.Index(fields=["status", "buy_time"], name="core_order_status_4a088a_idx"), ), migrations.AddIndex( model_name="orderproduct", - index=models.Index( - fields=["order", "status"], name="core_orderp_order_i_d16192_idx" - ), + index=models.Index(fields=["order", "status"], name="core_orderp_order_i_d16192_idx"), ), migrations.AddIndex( model_name="orderproduct", - index=models.Index( - fields=["product", "status"], name="core_orderp_product_ee8abb_idx" - ), + index=models.Index(fields=["product", "status"], name="core_orderp_product_ee8abb_idx"), ), migrations.AddIndex( model_name="product",