mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-10-30 23:39:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			457 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			457 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 4.2.23 on 2025-07-17 15:28
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('family', '0001_initial'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='family',
 | |
|             name='display_image',
 | |
|             field=models.ImageField(default='pic/default.png', max_length=255, upload_to='pic/', verbose_name='display image'),
 | |
|         ),
 | |
|     ]
 |