From: Magnus Hagander Date: Wed, 10 Apr 2024 09:16:22 +0000 (+0200) Subject: Backfill migration with changed ordering X-Git-Url: http://git.postgresql.org/gitweb/static/%7B%7Bpguslink%28?a=commitdiff_plain;h=927f82649e29bbdac8aa38e8e5d51a662112c4d4;p=hamn.git Backfill migration with changed ordering This was missed in dbdbe6a when ordering of moderator notes was changed on the model. --- diff --git a/hamnadmin/hamnadmin/register/migrations/0007_moderatornotes.py b/hamnadmin/hamnadmin/register/migrations/0007_moderatornotes.py index cbc28a8..9ad643b 100644 --- a/hamnadmin/hamnadmin/register/migrations/0007_moderatornotes.py +++ b/hamnadmin/hamnadmin/register/migrations/0007_moderatornotes.py @@ -25,7 +25,7 @@ class Migration(migrations.Migration): options={ 'verbose_name_plural': 'Moderator notes', 'db_table': 'moderatornotes', - 'ordering': ['-ts'], + 'ordering': ['ts'], }, ), ]