Skip to content

Commit

Permalink
added existing value
Browse files Browse the repository at this point in the history
  • Loading branch information
Tllew committed Feb 13, 2024
1 parent 813f82e commit 50ecb3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions api/survey/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class UserAccountEnum(models.TextChoices):
NEITHER_DIFFICULT_NOR_EASY = "NEUTRAL", "NEUTRAL"
EASY = "EASY", "EASY"
VERY_EASY = "VERY EASY", "VERY EASY"
EXISTING = "EXISTING", "EXISTING"


class ExperiencedIssueEnum(models.TextChoices):
Expand Down
3 changes: 2 additions & 1 deletion api/survey/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2.9 on 2024-02-12 15:53
# Generated by Django 4.2.9 on 2024-02-13 16:40

import django.contrib.postgres.fields
from django.db import migrations, models
Expand Down Expand Up @@ -90,6 +90,7 @@ class Migration(migrations.Migration):
("NEUTRAL", "NEUTRAL"),
("EASY", "EASY"),
("VERY EASY", "VERY EASY"),
("EXISTING", "EXISTING"),
],
default="",
),
Expand Down

0 comments on commit 50ecb3d

Please sign in to comment.