uranusjr commented on code in PR #51424:
URL: https://github.com/apache/airflow/pull/51424#discussion_r2153556537


##########
airflow-core/src/airflow/models/dag.py:
##########
@@ -1966,6 +1966,10 @@ class DagModel(Base):
         cascade="all, delete, delete-orphan",
     )
     schedule_assets = association_proxy("schedule_asset_references", "asset")
+    task_inlet_asset_references = relationship(
+        "TaskInletAssetReference",
+        cascade="all, delete, delete-orphan",
+    )

Review Comment:
   Yeah this is db level so we can’t do magical things like dynamically linking 
aliases. We’ll need an extra layer in Python to do the collection manually.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to