diff --git a/src/core/migrations/0165_alter_eventparticipant_options_and_more.py b/src/core/migrations/0165_alter_eventparticipant_options_and_more.py new file mode 100644 index 0000000000000000000000000000000000000000..39e98e039cd7c719039c01f09bbab21689605bfd --- /dev/null +++ b/src/core/migrations/0165_alter_eventparticipant_options_and_more.py @@ -0,0 +1,21 @@ +# Generated by Django 5.1.3 on 2024-12-15 17:42 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("core", "0164_alter_translation_keys"), + ] + + operations = [ + migrations.AlterModelOptions( + name="eventparticipant", + options={"ordering": ["order"]}, + ), + migrations.AddField( + model_name="eventparticipant", + name="order", + field=models.PositiveIntegerField(default=0), + ), + ]