Fix: Remove unused Product import from Customer model

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 <noreply@anthropic.com>
This commit is contained in:
2025-11-23 18:06:21 +03:00
parent 4a9df60f91
commit 122ea807d2

View File

@@ -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):