Skip to content

Commit 4f8561d

Browse files
committed
Rename per in export
1 parent aabeaac commit 4f8561d

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 3.2.23 on 2024-02-29 08:05
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('api', '0205_merge_20240227_0819'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='export',
15+
name='export_type',
16+
field=models.CharField(choices=[('dref-applications', 'Dref Applications'), ('dref-operational-updates', 'Dref Operational Updates'), ('dref-final-reports', 'Dref Final Reports'), ('per-process', 'Per Process')], max_length=255, verbose_name='Export Type'),
17+
),
18+
]

api/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2454,7 +2454,7 @@ class ExportType(models.TextChoices):
24542454
DREF = 'dref-applications', _('Dref Applications')
24552455
OPS_UPDATE = 'dref-operational-updates', _('Dref Operational Updates')
24562456
FINAL_REPORT = 'dref-final-reports', _('Dref Final Reports')
2457-
PER = 'per', _('Per')
2457+
PER = 'per-process', _('Per Process')
24582458

24592459
export_id = models.IntegerField(verbose_name=_('Export Id'))
24602460
export_type = models.CharField(

0 commit comments

Comments
 (0)