You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kompass/jdav_web/members/migrations/0035_ljpproposal_redo.py

54 lines
2.1 KiB
Python

# Generated by Django 4.0.1 on 2025-02-02 17:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('members', '0034_activitycategory_ljp_category'),
]
operations = [
migrations.RemoveField(
model_name='ljpproposal',
name='evaluation',
),
migrations.RemoveField(
model_name='ljpproposal',
name='experiences',
),
migrations.RemoveField(
model_name='ljpproposal',
name='goals_alpinistic',
),
migrations.RemoveField(
model_name='ljpproposal',
name='goals_pedagogic',
),
migrations.RemoveField(
model_name='ljpproposal',
name='methods',
),
migrations.AddField(
model_name='ljpproposal',
name='goal',
field=models.IntegerField(choices=[(1, 'Qualification'), (2, 'Participation'), (3, 'Personality development'), (4, 'Environment')], default=1, help_text='Official learning goal according to LJP regulations.', verbose_name='Learning goal'),
),
migrations.AddField(
model_name='ljpproposal',
name='goal_strategy',
field=models.TextField(blank=True, default='', help_text='How do you want to reach the learning goal? Has the goal been reached? If not, why not? If yes, what helped you to reach the goal?', verbose_name='Strategy'),
),
migrations.AlterField(
model_name='ljpproposal',
name='title',
field=models.CharField(blank=True, default='', help_text='Official title of your seminar, this can differ from the informal title. Use e.g. sports climbing course instead of climbing weekend for fun.', max_length=30, verbose_name='Title'),
),
migrations.AddField(
model_name='ljpproposal',
name='category',
field=models.IntegerField(choices=[(2, 'Educational programme'), (1, 'Staff training')], default=2, help_text='Type of seminar. Usually the correct choice is educational programme.', verbose_name='Category'),
),
]