mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-03 18:43:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			626 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			626 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
 | 
						|
import django.db.models.deletion
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [("club", "0004_auto_20160915_1057")]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name="club",
 | 
						|
            name="home",
 | 
						|
            field=models.OneToOneField(
 | 
						|
                related_name="home_of_club",
 | 
						|
                blank=True,
 | 
						|
                on_delete=django.db.models.deletion.SET_NULL,
 | 
						|
                verbose_name="home",
 | 
						|
                null=True,
 | 
						|
                to="core.SithFile",
 | 
						|
            ),
 | 
						|
        )
 | 
						|
    ]
 |