Files
civic-fix/civicfix/core/migrations/0007_department_users.py
T
2025-08-25 13:12:36 +05:30

20 lines
499 B
Python

# Generated by Django 5.2.5 on 2025-08-25 07:24
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0006_remove_department_users_department_admin'),
]
operations = [
migrations.AddField(
model_name='department',
name='users',
field=models.ManyToManyField(blank=True, related_name='departments', to=settings.AUTH_USER_MODEL),
),
]