Skip to content

Commit

Permalink
missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrindt committed Feb 4, 2021
1 parent 76db52a commit 9cad9d3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions ephios/event_management/migrations/0006_auto_20210204_2257.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 3.1.6 on 2021-02-04 21:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("event_management", "0005_eventtypepreference"),
]

operations = [
migrations.AlterField(
model_name="abstractparticipation",
name="state",
field=models.IntegerField(
choices=[
(0, "requested"),
(1, "confirmed"),
(2, "declined by user"),
(3, "rejected by responsible"),
(4, "getting dispatched"),
],
verbose_name="state",
),
),
]

0 comments on commit 9cad9d3

Please sign in to comment.