Skip to content

Commit 12d7f39

Browse files
committed
fixup! refactor(dref): refactor dref finalize logic
1 parent 2a44fb7 commit 12d7f39

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Generated by Django 4.2.19 on 2025-11-05 08:22
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('dref', '0085_remove_dref_is_published_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='dref',
15+
name='addressed_humanitarian_impacts_ar',
16+
field=models.TextField(blank=True, help_text=' Which of the expected severe humanitarian impacts of the hazard are your actions addressing?', null=True, verbose_name='Addressed Humanitarian Impacts'),
17+
),
18+
migrations.AddField(
19+
model_name='dref',
20+
name='addressed_humanitarian_impacts_en',
21+
field=models.TextField(blank=True, help_text=' Which of the expected severe humanitarian impacts of the hazard are your actions addressing?', null=True, verbose_name='Addressed Humanitarian Impacts'),
22+
),
23+
migrations.AddField(
24+
model_name='dref',
25+
name='addressed_humanitarian_impacts_es',
26+
field=models.TextField(blank=True, help_text=' Which of the expected severe humanitarian impacts of the hazard are your actions addressing?', null=True, verbose_name='Addressed Humanitarian Impacts'),
27+
),
28+
migrations.AddField(
29+
model_name='dref',
30+
name='addressed_humanitarian_impacts_fr',
31+
field=models.TextField(blank=True, help_text=' Which of the expected severe humanitarian impacts of the hazard are your actions addressing?', null=True, verbose_name='Addressed Humanitarian Impacts'),
32+
),
33+
migrations.AddField(
34+
model_name='dref',
35+
name='hazard_date_and_location_ar',
36+
field=models.TextField(blank=True, help_text='When and where is the hazard expected to happen?', null=True, verbose_name='Hazard Date and Location'),
37+
),
38+
migrations.AddField(
39+
model_name='dref',
40+
name='hazard_date_and_location_en',
41+
field=models.TextField(blank=True, help_text='When and where is the hazard expected to happen?', null=True, verbose_name='Hazard Date and Location'),
42+
),
43+
migrations.AddField(
44+
model_name='dref',
45+
name='hazard_date_and_location_es',
46+
field=models.TextField(blank=True, help_text='When and where is the hazard expected to happen?', null=True, verbose_name='Hazard Date and Location'),
47+
),
48+
migrations.AddField(
49+
model_name='dref',
50+
name='hazard_date_and_location_fr',
51+
field=models.TextField(blank=True, help_text='When and where is the hazard expected to happen?', null=True, verbose_name='Hazard Date and Location'),
52+
),
53+
migrations.AddField(
54+
model_name='dref',
55+
name='hazard_vulnerabilities_and_risks_ar',
56+
field=models.TextField(blank=True, help_text='Explain the underlying vulnerabilities and risks the hazard poses for at-risk communities?', null=True, verbose_name='Hazard Vulnerabilities and Risks'),
57+
),
58+
migrations.AddField(
59+
model_name='dref',
60+
name='hazard_vulnerabilities_and_risks_en',
61+
field=models.TextField(blank=True, help_text='Explain the underlying vulnerabilities and risks the hazard poses for at-risk communities?', null=True, verbose_name='Hazard Vulnerabilities and Risks'),
62+
),
63+
migrations.AddField(
64+
model_name='dref',
65+
name='hazard_vulnerabilities_and_risks_es',
66+
field=models.TextField(blank=True, help_text='Explain the underlying vulnerabilities and risks the hazard poses for at-risk communities?', null=True, verbose_name='Hazard Vulnerabilities and Risks'),
67+
),
68+
migrations.AddField(
69+
model_name='dref',
70+
name='hazard_vulnerabilities_and_risks_fr',
71+
field=models.TextField(blank=True, help_text='Explain the underlying vulnerabilities and risks the hazard poses for at-risk communities?', null=True, verbose_name='Hazard Vulnerabilities and Risks'),
72+
),
73+
]

0 commit comments

Comments
 (0)