Add kyc_profile_uuid to SupplierProfile and getSupplierProfileByTeam query
All checks were successful
Build Docker Image / build (push) Successful in 3m12s

This commit is contained in:
Ruslan Bakiev
2026-01-21 09:19:29 +07:00
parent ff752a4d37
commit 198e5567e0
2 changed files with 12 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ class SupplierProfile(models.Model):
"""
uuid = models.CharField(max_length=100, unique=True, default=uuid.uuid4)
team_uuid = models.CharField(max_length=100, unique=True) # Связь с Team
kyc_profile_uuid = models.CharField(max_length=100, blank=True, default='') # Связь с KYCProfile
name = models.CharField(max_length=255)
description = models.TextField(blank=True, default='')