mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			429 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			429 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 2.2.28 on 2023-08-31 09:50
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('member', '0010_new_default_year'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='profile',
 | 
						|
            name='VSS_charter_read',
 | 
						|
            field=models.BooleanField(default=False, verbose_name='VSS charter read'),
 | 
						|
        ),
 | 
						|
    ]
 |