25 lines
671 B
Python
25 lines
671 B
Python
|
# Generated by Django 4.2.6 on 2023-11-30 11:56
|
||
|
|
||
|
from django.conf import settings
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('user', '0006_auto_20220815_0759'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='team',
|
||
|
name='admins',
|
||
|
field=models.ManyToManyField(blank=True, related_name='+', to=settings.AUTH_USER_MODEL),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='user',
|
||
|
name='notifications',
|
||
|
field=models.ManyToManyField(blank=True, related_name='+', to='user.usernotification'),
|
||
|
),
|
||
|
]
|