[FEAT] Update database migrations to be more generic and applicable

This commit is contained in:
2023-03-12 15:37:20 +00:00
parent 0a3c85bb42
commit 858933c6bb
4 changed files with 4 additions and 3 deletions

View File

@@ -10,6 +10,7 @@ from .utils.question_sets import port_question
class GenderChoices(TextChoices):
MALE = 'M', 'Male'
FEMALE = 'F', 'Female'
NON_BINARY = 'B', 'Non-binary'
OTHER = 'O', 'Other'
PREFER_NOT_TO_SAY = 'N', 'Prefer not to say'