1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-03-31 00:51:13 +00:00

Remove default gender value

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2025-03-27 20:19:11 +01:00
parent 97eea3b11a
commit 73b94d5578
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
2 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,22 @@
# Generated by Django 5.1.5 on 2025-03-27 19:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("registration", "0014_participantregistration_country"),
]
operations = [
migrations.AlterField(
model_name="participantregistration",
name="gender",
field=models.CharField(
choices=[("female", "Female"), ("male", "Male"), ("other", "Other")],
max_length=6,
verbose_name="gender",
),
),
]

View File

@ -167,7 +167,6 @@ class ParticipantRegistration(Registration):
("male", _("Male")),
("other", _("Other")),
],
default="other",
)
address = models.CharField(