19 lines
460 B
Python
19 lines
460 B
Python
# Generated by Django 4.1.4 on 2023-05-22 12:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('physics', '0029_question_authors_only'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='question',
|
|
name='open_access',
|
|
field=models.BooleanField(default=True, help_text='If a question should be freely available to browse'),
|
|
),
|
|
]
|