migrations: Add noop reverse_code for migration 0419.

This migration is naturally one that should be a noop when
downgrading, so declare it as such.
This commit is contained in:
Tim Abbott 2022-10-13 22:31:25 -07:00
parent 0affc7ac6f
commit 966e63cc14
1 changed files with 1 additions and 0 deletions

View File

@ -94,6 +94,7 @@ class Migration(migrations.Migration):
operations = [
migrations.RunPython(
backfill_message_realm,
reverse_code=migrations.RunPython.noop,
elidable=True,
),
]