summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2024-04-10 09:16:22 +0000
committerMagnus Hagander2024-04-10 09:21:36 +0000
commit927f82649e29bbdac8aa38e8e5d51a662112c4d4 (patch)
tree20f5e77482496a42009fc58164eb101355802a78
parent7ab9e2b8c2f1551478490ee27e6c6559fd4ff5af (diff)
Backfill migration with changed ordering
This was missed in dbdbe6a when ordering of moderator notes was changed on the model.
-rw-r--r--hamnadmin/hamnadmin/register/migrations/0007_moderatornotes.py2
1 files changed, 1 insertions, 1 deletions
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'],
},
),
]