Backfill migration with changed ordering
authorMagnus Hagander <magnus@hagander.net>
Wed, 10 Apr 2024 09:16:22 +0000 (11:16 +0200)
committerMagnus Hagander <magnus@hagander.net>
Wed, 10 Apr 2024 09:21:36 +0000 (11:21 +0200)
This was missed in dbdbe6a when ordering of moderator notes was changed
on the model.

hamnadmin/hamnadmin/register/migrations/0007_moderatornotes.py

index cbc28a8cee53ce90422be7995b0bef2bc92dd5db..9ad643b954108729e2ba58d136e227a06aa6da8b 100644 (file)
@@ -25,7 +25,7 @@ class Migration(migrations.Migration):
             options={
                 'verbose_name_plural': 'Moderator notes',
                 'db_table': 'moderatornotes',
-                'ordering': ['-ts'],
+                'ordering': ['ts'],
             },
         ),
     ]