Skip to content

Commit

Permalink
chore: migration for handler_role
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtawast committed Nov 7, 2024
1 parent 02cf081 commit f71f368
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-11-07 11:38

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('applications', '0086_alter_ahjodecisionproposaldraft_handler_role'),
]

operations = [
migrations.AlterField(
model_name='ahjodecisionproposaldraft',
name='handler_role',
field=models.CharField(blank=True, choices=[('handler', 'Helsinki-benefit handler'), ('manager', 'Team manager')], max_length=64, null=True, verbose_name='Handler role (DEPRECATED, was used before dynamic fetch of decision makers)'),
),
]

0 comments on commit f71f368

Please sign in to comment.