26 lines
713 B
Python
26 lines
713 B
Python
# Generated by Django 3.2.8 on 2021-10-25 10:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0047_auto_20211022_2038'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Structure2',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('structure', models.CharField(max_length=200, unique=True)),
|
|
],
|
|
),
|
|
migrations.AlterField(
|
|
model_name='anatomyquestion',
|
|
name='structure',
|
|
field=models.CharField(max_length=255, null=True),
|
|
),
|
|
]
|