19 lines
488 B
Python
19 lines
488 B
Python
# Generated by Django 5.2.7 on 2025-10-29 21:01
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sbas', '0021_alter_question_open_access'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='question',
|
|
name='frcr_appropriate',
|
|
field=models.BooleanField(default=True, help_text='If set, this question is considered appropriate for FRCR exam practice.'),
|
|
),
|
|
]
|