34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
# Generated by Django 3.1.3 on 2021-02-05 10:56
|
|
|
|
from django.db import migrations
|
|
import tagulous.models.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('generic', '0007_site'),
|
|
('rapids', '0010_auto_20210205_1051'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='rapid',
|
|
name='condition',
|
|
),
|
|
migrations.AddField(
|
|
model_name='rapid',
|
|
name='condition',
|
|
field=tagulous.models.fields.TagField(_set_tag_meta=True, blank=True, help_text='Associated condition. Will allow searching / filtering and tips / hints to be displayed. Conditions with spaces must be enclosed in quotes "..."', to='generic.Condition'),
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='rapid',
|
|
name='sign',
|
|
),
|
|
migrations.AddField(
|
|
model_name='rapid',
|
|
name='sign',
|
|
field=tagulous.models.fields.TagField(_set_tag_meta=True, blank=True, help_text='Radiological signs in the question', to='generic.Sign'),
|
|
),
|
|
]
|