19 lines
480 B
Python
19 lines
480 B
Python
# Generated by Django 4.1.4 on 2023-05-22 12:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0069_rename_ciduseranswer_useranswer'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='anatomyquestion',
|
|
name='authors_only',
|
|
field=models.BooleanField(default=False, help_text='If true only question authors will be able to view.'),
|
|
),
|
|
]
|