ephraimbuddy commented on code in PR #26457:
URL: https://github.com/apache/airflow/pull/26457#discussion_r1016394816
##########
airflow/models/dagrun.py:
##########
@@ -119,6 +119,7 @@ class DagRun(Base, LoggingMixin):
# When a scheduler last attempted to schedule TIs for this DagRun
last_scheduling_decision = Column(UtcDateTime)
dag_hash = Column(String(32))
+ notes = Column(String(1000))
Review Comment:
```suggestion
notes = Column(String(1000).with_variant(Text(1000),'mysql'))
```
--
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]