From 2cd1c89f69c3f13039b6a7b4c3add6bc537278ad Mon Sep 17 00:00:00 2001 From: Martin Quarda Date: Tue, 7 May 2024 17:35:02 +0200 Subject: [PATCH] some migration --- .../0009_alter_user_alkator_category.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 alkatorapi/migrations/0009_alter_user_alkator_category.py diff --git a/alkatorapi/migrations/0009_alter_user_alkator_category.py b/alkatorapi/migrations/0009_alter_user_alkator_category.py new file mode 100644 index 0000000..f0926ae --- /dev/null +++ b/alkatorapi/migrations/0009_alter_user_alkator_category.py @@ -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), + ), + ]