ephraimbuddy commented on code in PR #27886:
URL: https://github.com/apache/airflow/pull/27886#discussion_r1031398043
##########
airflow/models/dagrun.py:
##########
@@ -1314,7 +1314,7 @@ class DagRunNote(Base):
__tablename__ = "dag_run_note"
user_id = Column(Integer, nullable=True)
- dag_run_id = Column(Integer, primary_key=True, nullable=False)
+ dag_run_id = Column(Integer, primary_key=True, name="dag_run_note_pkey",
nullable=False)
Review Comment:
Yeah. You are right @uranusjr . The naming convention was what was making
the name appear as if this is working. I will change it
--
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]