19 lines
435 B
Python
19 lines
435 B
Python
# Generated by Django 3.2.8 on 2021-10-17 17:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rapids', '0034_auto_20211016_2128'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='open_access',
|
|
field=models.BooleanField(default=False, help_text='If the exam is freely accessible'),
|
|
),
|
|
]
|