Add kyc_profile_uuid to SupplierProfile and getSupplierProfileByTeam query
All checks were successful
Build Docker Image / build (push) Successful in 3m12s
All checks were successful
Build Docker Image / build (push) Successful in 3m12s
This commit is contained in:
@@ -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='')
|
||||
|
||||
Reference in New Issue
Block a user