19 lines
490 B
Python
19 lines
490 B
Python
# Generated by Django 5.1.7 on 2025-04-10 14:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0033_remove_qivipquiz_tags_delete_tag'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='qivipquiz',
|
|
name='status',
|
|
field=models.CharField(choices=[('öffentlich', 'Öffentlich'), ('privat', 'Privat')], default='öffentlich', max_length=10),
|
|
),
|
|
]
|