Add migration for kyc_profile_uuid field
Build Docker Image / build (push) Successful in 1m15s

This commit is contained in:
Ruslan Bakiev
2026-01-21 13:55:34 +07:00
parent 198e5567e0
commit d850c6997b
41 changed files with 16 additions and 0 deletions
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('suppliers', '0003_add_coordinates'),
]
operations = [
migrations.AddField(
model_name='supplier',
name='kyc_profile_uuid',
field=models.CharField(blank=True, default='', max_length=100),
),
]