19 lines
455 B
Python
19 lines
455 B
Python
# Generated by Django 3.2.12 on 2024-06-24 03:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('exam', '0004_alter_paper_paper_types'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='paper',
|
|
name='questions',
|
|
field=models.ManyToManyField(blank=True, null=True, through='exam.PaperQuestion', to='exam.Question'),
|
|
),
|
|
]
|