diff --git a/anatomy/migrations/0041_alter_exam_name.py b/anatomy/migrations/0041_alter_exam_name.py new file mode 100644 index 00000000..d0bca8fc --- /dev/null +++ b/anatomy/migrations/0041_alter_exam_name.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.4 on 2021-07-09 11:35 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('anatomy', '0040_alter_exam_exam_mode'), + ] + + operations = [ + migrations.AlterField( + model_name='exam', + name='name', + field=models.CharField(help_text='Name of the exam', max_length=200), + ), + ] diff --git a/longs/migrations/0038_alter_exam_name.py b/longs/migrations/0038_alter_exam_name.py new file mode 100644 index 00000000..a6ca76c7 --- /dev/null +++ b/longs/migrations/0038_alter_exam_name.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.4 on 2021-07-09 11:35 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('longs', '0037_alter_exam_time_limit'), + ] + + operations = [ + migrations.AlterField( + model_name='exam', + name='name', + field=models.CharField(help_text='Name of the exam', max_length=200), + ), + ] diff --git a/physics/migrations/0009_alter_exam_name.py b/physics/migrations/0009_alter_exam_name.py new file mode 100644 index 00000000..212cf100 --- /dev/null +++ b/physics/migrations/0009_alter_exam_name.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.4 on 2021-07-09 11:35 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('physics', '0008_alter_exam_exam_mode'), + ] + + operations = [ + migrations.AlterField( + model_name='exam', + name='name', + field=models.CharField(help_text='Name of the exam', max_length=200), + ), + ] diff --git a/rapids/migrations/0025_auto_20210709_1135.py b/rapids/migrations/0025_auto_20210709_1135.py new file mode 100644 index 00000000..9e02078d --- /dev/null +++ b/rapids/migrations/0025_auto_20210709_1135.py @@ -0,0 +1,26 @@ +# Generated by Django 3.2.4 on 2021-07-09 11:35 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('rapids', '0024_alter_exam_exam_mode'), + ] + + operations = [ + migrations.RemoveField( + model_name='rapid', + name='condition', + ), + migrations.RemoveField( + model_name='rapid', + name='sign', + ), + migrations.AlterField( + model_name='exam', + name='name', + field=models.CharField(help_text='Name of the exam', max_length=200), + ), + ] diff --git a/rapids/models.py b/rapids/models.py index c5754bd8..246ac752 100644 --- a/rapids/models.py +++ b/rapids/models.py @@ -144,14 +144,14 @@ class Rapid(models.Model): choices=LATERALITY_CHOICES, default=NONE, help_text="Applies to the answer, not the examination") - condition = tagulous.models.TagField( - to=Condition, - blank=True, - help_text= - "Associated condition. Will allow searching / filtering and tips / hints to be displayed. Conditions with spaces must be enclosed in quotes \"...\"" - ) - sign = tagulous.models.TagField( - to=Sign, blank=True, help_text='Radiological signs in the question') + #condition = tagulous.models.TagField( + # to=Condition, + # blank=True, + # help_text= + # "Associated condition. Will allow searching / filtering and tips / hints to be displayed. Conditions with spaces must be enclosed in quotes \"...\"" + #) + #sign = tagulous.models.TagField( + # to=Sign, blank=True, help_text='Radiological signs in the question') DEFAULT_SITE_ID = 1 #site = models.ManyToManyField(