diff --git a/common/amundsen_common/models/lineage.py b/common/amundsen_common/models/lineage.py index 1015b3a24d..50d8e5131b 100644 --- a/common/amundsen_common/models/lineage.py +++ b/common/amundsen_common/models/lineage.py @@ -16,6 +16,7 @@ class LineageItem: source: str # database this resource is from badges: Optional[List[Badge]] = None usage: Optional[int] = None # statistic to sort lineage items by + parent: Optional[str] = None # key of the parent entity, used to create the relationships in graph class LineageItemSchema(AttrsSchema): diff --git a/common/setup.py b/common/setup.py index 686f52eea2..57b367a9c6 100644 --- a/common/setup.py +++ b/common/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup -__version__ = '0.10.0' +__version__ = '0.10.1' setup( name='amundsen-common',