Merge pull request #3075 from bookwyrm-social/small-migration-fix

Adds reverse migration for populate sort title
This commit is contained in:
Mouse Reeve 2023-11-01 18:19:34 -07:00 committed by GitHub
commit 86fd62a09e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,5 +45,7 @@ class Migration(migrations.Migration):
]
operations = [
migrations.RunPython(populate_sort_title),
migrations.RunPython(
populate_sort_title, reverse_code=migrations.RunPython.noop
),
]