From 122ea807d2ef6d597f69df4a2e6c6dc0df7eaf3a Mon Sep 17 00:00:00 2001 From: Andrey Smakotin Date: Sun, 23 Nov 2025 18:06:21 +0300 Subject: [PATCH] Fix: Remove unused Product import from Customer model MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The import was left over from the removed loyalty system and could cause issues during tenant creation when products tables don't exist yet. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- myproject/customers/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/myproject/customers/models.py b/myproject/customers/models.py index 8405c87..0181eae 100644 --- a/myproject/customers/models.py +++ b/myproject/customers/models.py @@ -2,7 +2,6 @@ import phonenumbers from django.core.exceptions import ValidationError from django.db import models from phonenumber_field.modelfields import PhoneNumberField -from products.models import Product class Customer(models.Model):