mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 09:29:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			576 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			576 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # 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",
 | |
|             ),
 | |
|         ),
 | |
|     ]
 |