dstandish commented on a change in pull request #22184:
URL: https://github.com/apache/airflow/pull/22184#discussion_r825593332
##########
File path: airflow/models/taskinstance.py
##########
@@ -425,6 +425,16 @@ class TaskInstance(Base, LoggingMixin):
dag_run = relationship("DagRun", back_populates="task_instances",
lazy='joined', innerjoin=True)
rendered_task_instance_fields = relationship("RenderedTaskInstanceFields",
lazy='noload', uselist=False)
+ sla_miss = relationship(
Review comment:
@ashb @uranusjr this is what i came up with for defining a "FK"
relationship without actually defining a db-level FK constraint. does this
look right?
--
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]