diff --git a/tools/checks/check-datasource-composition.py b/tools/checks/check-datasource-composition.py index be9f010..bb8fbb2 100644 --- a/tools/checks/check-datasource-composition.py +++ b/tools/checks/check-datasource-composition.py @@ -15,6 +15,7 @@ from govoplan_core.core.dataflows import ( dataflow_run_lifecycle, ) from govoplan_core.core.automation import AutomationPrincipalResolution +from govoplan_core.core.change_sequence import ChangeSequenceEntry from govoplan_core.core.access import ( CAPABILITY_AUTH_AUTOMATION_PRINCIPAL_PROVIDER, ) @@ -79,6 +80,7 @@ def main() -> int: Base.metadata.create_all( engine, tables=[ + ChangeSequenceEntry.__table__, DistributedLease.__table__, RecoveryOperation.__table__, RecoveryCheckpoint.__table__,