# Generated by Django 5.1.7 on 2025-04-08 14:21 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('library', '0034_alter_qivipquestion_time_per_question'), ] operations = [ migrations.AlterField( model_name='qivipquestion', name='time_per_question', field=models.CharField(choices=[('10', 10), ('15', 15), ('30', 30), ('60', 60), ('90', 90), ('120', 120), ('180', 180)], default=30, help_text='Zeit pro Frage in Sekunden', max_length=3), ), ]