mirror of https://github.com/zulip/zulip.git
renumber-migrations: Skip migration 0261.
Because of a security release that required a migration, there are two migrations numbered 0261. To avoid breaking existing installs renumbering the migrations, we skipped migration 0261 when running tools/renumber-migrations.
This commit is contained in:
parent
1094e533bf
commit
e87df351f7
|
@ -51,6 +51,7 @@ def resolve_conflicts(conflicts: List[str], files_list: List[str]) -> None:
|
|||
|
||||
if __name__ == '__main__':
|
||||
|
||||
MIGRATIONS_TO_SKIP = {'0209', '0261'}
|
||||
while True:
|
||||
conflicts: List[str] = []
|
||||
stack: List[str] = []
|
||||
|
@ -61,11 +62,15 @@ if __name__ == '__main__':
|
|||
migration_number = file[0:4]
|
||||
counter = file_index.count(migration_number)
|
||||
|
||||
# There are 2 migrations 0209 because of a security
|
||||
# release requiring a migration.
|
||||
if counter > 1 and file[0:4] not in stack and migration_number != "0209":
|
||||
conflicts += [file_name for file_name in files_list if file_name.startswith(migration_number)]
|
||||
stack.append(migration_number)
|
||||
if counter > 1 and file[0:4] not in stack:
|
||||
# When we need to backport migrations to a previous
|
||||
# release, we sometimes end up with multiple having
|
||||
# the same ID number (which isn't a problem; the
|
||||
# migrations graph structure, not the IDs, is what
|
||||
# matters).
|
||||
if migration_number not in MIGRATIONS_TO_SKIP:
|
||||
conflicts += [file_name for file_name in files_list if file_name.startswith(migration_number)]
|
||||
stack.append(migration_number)
|
||||
|
||||
if len(conflicts) > 0:
|
||||
resolve_conflicts(conflicts, files_list)
|
||||
|
|
Loading…
Reference in New Issue