19 lines
475 B
Python
19 lines
475 B
Python
# Generated by Django 5.1.4 on 2025-10-20 19:46
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sbas', '0020_question_sources'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='question',
|
|
name='open_access',
|
|
field=models.BooleanField(default=True, help_text='If set, this question is available to all users for use in their exams.'),
|
|
),
|
|
]
|