diff --git a/server/vbv_lernwelt/core/migrations/0007_auto_20240220_1058.py b/server/vbv_lernwelt/core/migrations/0007_auto_20240220_1058.py new file mode 100644 index 00000000..6992cfd0 --- /dev/null +++ b/server/vbv_lernwelt/core/migrations/0007_auto_20240220_1058.py @@ -0,0 +1,25 @@ +# Generated by Django 3.2.20 on 2024-02-20 09:58 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("core", "0006_auto_20240125_0915"), + ] + + operations = [ + migrations.AlterModelOptions( + name="country", + options={ + "ordering": ["order_id", "country_id"], + "verbose_name": "Country", + "verbose_name_plural": "Countries", + }, + ), + migrations.AddField( + model_name="country", + name="order_id", + field=models.FloatField(default=20), + ), + ]