From c8b8f4ab828be5e684561973dc3f91d7da99d1f4 Mon Sep 17 00:00:00 2001 From: Gregory Trullemans Date: Sun, 29 Oct 2023 20:24:28 +0100 Subject: [PATCH] Update followup model --- .../0059_alter_injury_injury_type.py | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 jarvis/followup/migrations/0059_alter_injury_injury_type.py diff --git a/jarvis/followup/migrations/0059_alter_injury_injury_type.py b/jarvis/followup/migrations/0059_alter_injury_injury_type.py new file mode 100644 index 0000000..de4eebc --- /dev/null +++ b/jarvis/followup/migrations/0059_alter_injury_injury_type.py @@ -0,0 +1,35 @@ +# Generated by Django 4.2 on 2023-10-29 19:23 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("followup", "0058_alter_intensity_unique_together_and_more"), + ] + + operations = [ + migrations.AlterField( + model_name="injury", + name="injury_type", + field=models.SmallIntegerField( + choices=[ + (0, "Abrasion"), + (1, "Dental Injury"), + (2, "Dislocation / Subluxation"), + (3, "Fracture"), + (4, "Haematoma / Contusion / Bruise"), + (5, "Head Concussion"), + (6, "Laceration"), + (7, "Lesion of Meniscus or Cartilage"), + (8, "Muscle Rupture / Strain / Tear / Cramps"), + (9, "Nerve Injury"), + (10, "Other Bone Injury"), + (11, "Sprain / Ligament Injury"), + (12, "Tendon Injury / Rupture / Tendinosis / Bursitis"), + ], + verbose_name="Type", + ), + ), + ]