# 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", ), ), ]