From 8a22f839f21e19e5f4546d0f40584b7530957ea0 Mon Sep 17 00:00:00 2001 From: thenav56 Date: Sat, 8 Feb 2025 18:26:59 +0545 Subject: [PATCH] Fix missing migrations issues --- .../0023_alter_extractiondata_hazard_type_and_more.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/etl/migrations/0023_alter_extractiondata_hazard_type_and_more.py b/apps/etl/migrations/0023_alter_extractiondata_hazard_type_and_more.py index 1bd0eaf..3765a02 100644 --- a/apps/etl/migrations/0023_alter_extractiondata_hazard_type_and_more.py +++ b/apps/etl/migrations/0023_alter_extractiondata_hazard_type_and_more.py @@ -13,7 +13,7 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='extractiondata', name='hazard_type', - field=models.CharField(blank=True, choices=[('EQ', 'Earthquake'), ('FL', 'Flood'), ('TC', 'Cyclone'), ('EP', 'Epidemic'), ('FI', 'Food Insecurity'), ('SS', 'Storm Surge'), ('DR', 'Drought'), ('TS', 'Tsunami'), ('CD', 'Cyclonic Wind'), ('WF', 'WildFire'), ('VO', 'Volcano'), ('CW', 'Cold Wave'), ('CE', 'Complex Emergency'), ('EC', 'Extratropical Cyclone'), ('ET', 'Extreme temperature'), ('FA', 'Famine'), ('FR', 'Fire'), ('FF', 'Flash Flood'), ('HT', 'Heat Wave'), ('IN', 'Insect Infestation'), ('LS', 'Land Slide'), ('MS', 'Mud Slide'), ('ST', 'Severe Local Strom'), ('SL', 'Slide'), ('AV', 'Snow Avalanche'), ('AC', 'Tech. Disaster'), ('TO', 'Tornado'), ('VW', 'Violent Wind'), ('WV', 'Wave/Surge')], max_length=100, null=True, verbose_name='hazard type'), + field=models.CharField(blank=True, choices=[('EQ', 'Earthquake'), ('FL', 'Flood'), ('TC', 'Cyclone'), ('EP', 'Epidemic'), ('FI', 'Food Insecurity'), ('SS', 'Storm Surge'), ('DR', 'Drought'), ('TS', 'Tsunami'), ('CD', 'Cyclonic Wind'), ('WF', 'WildFire'), ('VO', 'Volcano'), ('CW', 'Cold Wave'), ('CE', 'Complex Emergency'), ('EC', 'Extratropical Cyclone'), ('ET', 'Extreme temperature'), ('FA', 'Famine'), ('FR', 'Fire'), ('FF', 'Flash Flood'), ('HT', 'Heat Wave'), ('IN', 'Insect Infestation'), ('LS', 'Land Slide'), ('MS', 'Mud Slide'), ('ST', 'Severe Local Strom'), ('SL', 'Slide'), ('AV', 'Snow Avalanche'), ('AC', 'Tech. Disaster'), ('TO', 'Tornado'), ('VW', 'Violent Wind'), ('WV', 'Wave/Surge'), ('OT', 'Other')], max_length=100, null=True, verbose_name='hazard type'), ), migrations.AlterField( model_name='extractiondata',