mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-05 20:44:19 +01:00
25 lines
599 B
Python
25 lines
599 B
Python
# Generated by Django 5.1.3 on 2024-11-30 18:21
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("quiz", "0001_initial"),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="season",
|
|
name="owner",
|
|
field=models.ManyToManyField(
|
|
related_name="seasons",
|
|
to=settings.AUTH_USER_MODEL,
|
|
verbose_name="owners",
|
|
),
|
|
),
|
|
]
|