19 lines
500 B
Python
19 lines
500 B
Python
# Generated by Django 5.1.4 on 2025-10-20 11:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sbas', '0019_question_title'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='question',
|
|
name='sources',
|
|
field=models.JSONField(blank=True, help_text='List of source references for the question (e.g. article DOIs or StatDx IDs or Source file names).', null=True),
|
|
),
|
|
]
|