mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 03:29:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			766 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			766 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 5.0.6 on 2024-07-09 11:07
 | |
| 
 | |
| import django.db.models.deletion
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ("draw", "0005_alter_round_number_alter_teamdraw_accepted_and_more"),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name="round",
 | |
|             name="current_pool",
 | |
|             field=models.ForeignKey(
 | |
|                 default=None,
 | |
|                 help_text="The current pool where teams select their problems.",
 | |
|                 null=True,
 | |
|                 on_delete=django.db.models.deletion.SET_NULL,
 | |
|                 related_name="+",
 | |
|                 to="draw.pool",
 | |
|                 verbose_name="current pool",
 | |
|             ),
 | |
|         ),
 | |
|     ]
 |