20 lines
465 B
Python
20 lines
465 B
Python
# Generated by Django 3.2.9 on 2022-05-24 17:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('trials', '0023_tournament'),
|
|
('questions', '0003_alter_question_description'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='question',
|
|
name='tournament',
|
|
field=models.ManyToManyField(null=True, to='trials.Tournament'),
|
|
),
|
|
]
|