add org_type_field to oragnization type serializer

This commit is contained in:
2025-10-28 16:48:19 +03:30
parent b0b6e5734d
commit b914efd1fb
4 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0 on 2025-10-28 12:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authentication', '0039_remove_organizationtype_region_scope'),
]
operations = [
migrations.AddField(
model_name='organizationtype',
name='org_type_field',
field=models.CharField(choices=[('CI', 'city'), ('CO', 'country'), ('PR', 'province')], max_length=25, null=True),
),
]