Skip to content

Commit 5ca22bc

Browse files
committed
migrations: fix _depends references left stale by the border chain rename
be8a1cf renamed the 5 border migration files but only staged the git-mv itself; the _depends edits pointing each file at its new predecessor name (0066-init-border chained after 0065-registration-client-auto-provision, and 0067-0070 each bumped one) were made in the working tree afterwards and never got committed. Left as-is, every _depends referenced a filename that no longer existed post-rename, so the migration graph was still broken (just differently). This completes what be8a1cf's message already claimed to do.
1 parent be8a1cf commit 5ca22bc

5 files changed

Lines changed: 5 additions & 5 deletions

migrations/0066-init-border-ec37b4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
class MigrationStep(migrations.AbstractMigrationStep):
2121
def __init__(self):
22-
self._depends = ["0064-init-repo-tables-645142.py"]
22+
self._depends = ["0065-registration-client-auto-provision-b7f2d9.py"]
2323

2424
@property
2525
def migration_id(self):

migrations/0067-border-node-target-b2e4f7.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
class MigrationStep(migrations.AbstractMigrationStep):
2121
def __init__(self):
22-
self._depends = ["0065-init-border-ec37b4.py"]
22+
self._depends = ["0066-init-border-ec37b4.py"]
2323

2424
@property
2525
def migration_id(self):

migrations/0068-border-inline-rules-c9a3d1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
class MigrationStep(migrations.AbstractMigrationStep):
2121
def __init__(self):
22-
self._depends = ["0066-border-node-target-b2e4f7.py"]
22+
self._depends = ["0067-border-node-target-b2e4f7.py"]
2323

2424
@property
2525
def migration_id(self):

migrations/0069-border-permissions-d4a7b2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _u(name: str) -> str:
4141

4242
class MigrationStep(migrations.AbstractMigrationStep):
4343
def __init__(self):
44-
self._depends = ["0067-border-inline-rules-c9a3d1.py"]
44+
self._depends = ["0068-border-inline-rules-c9a3d1.py"]
4545

4646
@property
4747
def migration_id(self):

migrations/0070-border-type-and-ips-e5c1a9.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
class MigrationStep(migrations.AbstractMigrationStep):
2121
def __init__(self):
22-
self._depends = ["0068-border-permissions-d4a7b2.py"]
22+
self._depends = ["0069-border-permissions-d4a7b2.py"]
2323

2424
@property
2525
def migration_id(self):

0 commit comments

Comments
 (0)