You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
510 B
19 lines
510 B
# Generated by Django 5.1 on 2024-12-04 15:40
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tournaments', '0103_remove_modellog_users_delete_dataaccess_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='referees',
|
|
field=models.ManyToManyField(blank=True, related_name='owners', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|
|
|