From ecb29b7cd59be51643dc7a0e5b701a7225e87a61 Mon Sep 17 00:00:00 2001 From: Birger Schacht Date: Fri, 26 Jan 2024 10:16:53 +0100 Subject: [PATCH] fix: add missing skoscollection migration --- .../0002_alter_skoscollection_options.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apis_core/collections/migrations/0002_alter_skoscollection_options.py diff --git a/apis_core/collections/migrations/0002_alter_skoscollection_options.py b/apis_core/collections/migrations/0002_alter_skoscollection_options.py new file mode 100644 index 000000000..07e17701d --- /dev/null +++ b/apis_core/collections/migrations/0002_alter_skoscollection_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.9 on 2024-01-26 07:57 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('collections', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='skoscollection', + options={'ordering': ['name']}, + ), + ]