hopefulyl remove tagulous properly

This commit is contained in:
Ross
2023-05-22 11:20:42 +01:00
parent 664e29937d
commit 8cd8e9226c
6 changed files with 24 additions and 22 deletions
+3 -3
View File
@@ -6,7 +6,7 @@ from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
import sortedm2m.fields
import tagulous.models.fields
#import tagulous.models.fields
class Migration(migrations.Migration):
@@ -60,9 +60,9 @@ class Migration(migrations.Migration):
('scrapped', models.BooleanField(default=False, help_text='Question has been scrapped and will not be shown')),
('open_access', models.BooleanField(default=True, help_text='If a question should be freely available to browse')),
('author', models.ManyToManyField(blank=True, help_text='Author of question', related_name='atlas_authored_questions', to=settings.AUTH_USER_MODEL)),
('condition', 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')),
('condition', models.CharField(blank=True, help_text='Associated condition. Will allow searching / filtering and tips / hints to be displayed. Conditions with spaces must be enclosed in quotes "..."')),
('series', sortedm2m.fields.SortedManyToManyField(help_text=None, related_name='atlas', to='atlas.Series')),
('sign', tagulous.models.fields.TagField(_set_tag_meta=True, blank=True, help_text='Radiological signs in the question', to='generic.Sign')),
('sign', models.CharField( blank=True, help_text='Radiological signs in the question')),
],
),
]