20 lines
488 B
Python
20 lines
488 B
Python
# Generated by Django 5.2.5 on 2025-08-25 06:43
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0004_department_alter_comment_user'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='department',
|
|
name='users',
|
|
field=models.ManyToManyField(blank=True, related_name='departments', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|