add org_type_field to oragnization type serializer
This commit is contained in:
@@ -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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user