renumber-migrations: Skip migration 0501.

Security fix cf8b9ad needed migration
`zerver/0501_delete_dangling_usermessages` on the 8.x branch (3db1733).
This resulted in two migrations numbered 0501, due to which this tool
always got stuck on 0501.
This commit is contained in:
tnmkr 2024-04-08 22:42:12 +05:30 committed by Tim Abbott
parent 15cec69995
commit 2f88b810e0
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def resolve_conflicts(conflicts: List[str], files_list: List[str]) -> None:
if __name__ == "__main__":
MIGRATIONS_TO_SKIP = {"0209", "0261"}
MIGRATIONS_TO_SKIP = {"0209", "0261", "0501"}
while True:
conflicts: List[str] = []
stack: List[str] = []