# Generated by Django 4.0.1 on 2025-02-05 23:18 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('members', '0035_ljpproposal_redo'), ] operations = [ migrations.AddField( model_name='ljpproposal', name='not_bw_reason', field=models.IntegerField(blank=True, choices=[(1, 'Course content'), (2, 'Available rooms'), (3, 'Close to the border'), (4, 'Economic reasons')], default=None, help_text='If the excursion takes place outside of Baden-Württemberg, please explain. Otherwise, leave this empty.', null=True, verbose_name='Explanation if excursion not in Baden-Württemberg'), ), ]