19 lines
474 B
Python
19 lines
474 B
Python
# Generated by Django 5.0 on 2025-12-22 11:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('authentication', '0049_alter_bankaccountinformation_account_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='organization',
|
|
name='service_area',
|
|
field=models.ManyToManyField(related_name='service_area', to='authentication.city'),
|
|
),
|
|
]
|