some migration

This commit is contained in:
Martin Quarda 2024-05-07 17:35:02 +02:00
parent 826f34d798
commit 2cd1c89f69

View File

@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-05-07 15:34
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alkatorapi', '0008_remove_user_alkator_user_alkator_category'),
]
operations = [
migrations.AlterField(
model_name='user',
name='alkator_category',
field=models.IntegerField(choices=[(1, 'Alkátor'), (2, 'Alkátor light'), (3, 'Nealkátor')], default=1),
),
]