-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migration to delete all diffs b/c some could be incorrect
- Loading branch information
1 parent
c2eb7cb
commit 9d50190
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
GRAPH_VERSION = 15 | ||
GRAPH_VERSION = 16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
backend/infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING | ||
|
||
from infrahub.core import registry | ||
from infrahub.core.diff.repository.repository import DiffRepository | ||
from infrahub.core.migrations.shared import MigrationResult | ||
from infrahub.dependencies.registry import build_component_registry, get_component_registry | ||
from infrahub.log import get_logger | ||
|
||
from ..shared import ArbitraryMigration | ||
|
||
if TYPE_CHECKING: | ||
from infrahub.database import InfrahubDatabase | ||
|
||
log = get_logger() | ||
|
||
|
||
class Migration016(ArbitraryMigration): | ||
name: str = "016_diff_delete_bug_fix_update" | ||
minimum_version: int = 15 | ||
|
||
async def validate_migration(self, db: InfrahubDatabase) -> MigrationResult: | ||
result = MigrationResult() | ||
|
||
return result | ||
|
||
async def execute(self, db: InfrahubDatabase) -> MigrationResult: | ||
default_branch = registry.get_branch_from_registry() | ||
build_component_registry() | ||
component_registry = get_component_registry() | ||
diff_repo = await component_registry.get_component(DiffRepository, db=db, branch=default_branch) | ||
|
||
diff_roots = await diff_repo.get_empty_roots() | ||
await diff_repo.delete_diff_roots(diff_root_uuids=[d.uuid for d in diff_roots]) | ||
return MigrationResult() |