.
This commit is contained in:
@@ -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),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -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),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -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),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -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),
|
||||||
|
),
|
||||||
|
]
|
||||||
+8
-8
@@ -144,14 +144,14 @@ class Rapid(models.Model):
|
|||||||
choices=LATERALITY_CHOICES,
|
choices=LATERALITY_CHOICES,
|
||||||
default=NONE,
|
default=NONE,
|
||||||
help_text="Applies to the answer, not the examination")
|
help_text="Applies to the answer, not the examination")
|
||||||
condition = tagulous.models.TagField(
|
#condition = tagulous.models.TagField(
|
||||||
to=Condition,
|
# to=Condition,
|
||||||
blank=True,
|
# blank=True,
|
||||||
help_text=
|
# help_text=
|
||||||
"Associated condition. Will allow searching / filtering and tips / hints to be displayed. Conditions with spaces must be enclosed in quotes \"...\""
|
# "Associated condition. Will allow searching / filtering and tips / hints to be displayed. Conditions with spaces must be enclosed in quotes \"...\""
|
||||||
)
|
#)
|
||||||
sign = tagulous.models.TagField(
|
#sign = tagulous.models.TagField(
|
||||||
to=Sign, blank=True, help_text='Radiological signs in the question')
|
# to=Sign, blank=True, help_text='Radiological signs in the question')
|
||||||
|
|
||||||
DEFAULT_SITE_ID = 1
|
DEFAULT_SITE_ID = 1
|
||||||
#site = models.ManyToManyField(
|
#site = models.ManyToManyField(
|
||||||
|
|||||||
Reference in New Issue
Block a user