19 lines
512 B
Python
19 lines
512 B
Python
# Generated by Django 5.1.7 on 2025-03-16 12:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0015_alter_qivipquiz_difficulty'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='qivipquiz',
|
|
name='status',
|
|
field=models.CharField(choices=[('öffentlich', 'Öffentlich'), ('versteckt', 'Versteckt'), ('privat', 'Privat')], default='öffentlich', max_length=10),
|
|
),
|
|
]
|