39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.1.1 on 2020-10-20 07:14
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('input', '0013_library_type'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='honorarycertificate',
 | 
						|
            name='granted',
 | 
						|
            field=models.BooleanField(null=True),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='ifg',
 | 
						|
            name='granted',
 | 
						|
            field=models.BooleanField(null=True),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='library',
 | 
						|
            name='granted',
 | 
						|
            field=models.BooleanField(null=True),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='project',
 | 
						|
            name='granted',
 | 
						|
            field=models.BooleanField(null=True),
 | 
						|
        ),
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='library',
 | 
						|
            name='type',
 | 
						|
            field=models.CharField(choices=[('BIB', 'Bibliotheksstipendium'), ('ELIT', 'eLiteraturstipendium'), ('SOFT', 'Softwarestipendium'), ('VIS', 'Visitenkarten'), ('LIST', 'Mailingliste'), ('MAIL', 'E-Mail-Adresse'), ('IFG', 'Kostenübernahme IFG-Anfrage'), ('LIT', 'Literaturstipendium')], default='LIB', max_length=4),
 | 
						|
        ),
 | 
						|
    ]
 |