mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 03:29:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			555 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			555 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 5.0.6 on 2024-06-07 12:46
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         (
 | |
|             "registration",
 | |
|             "0013_participantregistration_photo_authorization_final_and_more",
 | |
|         ),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name="participantregistration",
 | |
|             name="country",
 | |
|             field=models.CharField(
 | |
|                 default="France", max_length=255, verbose_name="country"
 | |
|             ),
 | |
|         ),
 | |
|     ]
 |