mirror of https://github.com/zulip/zulip.git
renumber-migrations: Skip migration 0501.
Security fixcf8b9ad
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:
parent
15cec69995
commit
2f88b810e0
|
@ -54,7 +54,7 @@ def resolve_conflicts(conflicts: List[str], files_list: List[str]) -> None:
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
MIGRATIONS_TO_SKIP = {"0209", "0261"}
|
MIGRATIONS_TO_SKIP = {"0209", "0261", "0501"}
|
||||||
while True:
|
while True:
|
||||||
conflicts: List[str] = []
|
conflicts: List[str] = []
|
||||||
stack: List[str] = []
|
stack: List[str] = []
|
||||||
|
|
Loading…
Reference in New Issue