migrations: Fix typo in 0099 reverse_sql.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2022-02-07 15:00:13 -08:00 committed by Tim Abbott
parent b08bb0af0e
commit cd9b9675cd
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ class Migration(migrations.Migration):
ON zerver_usermessage (user_profile_id, message_id)
WHERE (flags & 8) != 0 OR (flags & 16) != 0;
""",
reverse_sql="DROP INDEX zerver_usermessage_wilcard_mentioned_message_id;",
reverse_sql="DROP INDEX zerver_usermessage_wildcard_mentioned_message_id;",
),
]