19 lines
444 B
Python
19 lines
444 B
Python
# Generated by Django 4.1.4 on 2023-05-22 12:38
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0070_anatomyquestion_authors_only'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='anatomyquestion',
|
|
name='feedback',
|
|
field=models.TextField(blank=True, help_text='Question Feedback', null=True),
|
|
),
|
|
]
|