itroulli commented on a change in pull request #15194:
URL: https://github.com/apache/airflow/pull/15194#discussion_r611201878
##########
File path: airflow/models/variable.py
##########
@@ -47,12 +47,14 @@ class Variable(Base, LoggingMixin):
id = Column(Integer, primary_key=True)
key = Column(String(ID_LEN), unique=True)
_val = Column('val', Text)
+ description = Column(Text(5000))
Review comment:
I think I'd need some help with updating the revision keys in the
migration file. I believe this is why some checks are failing. With Python 3.6,
MySQL 5.7 right now I get this error:
`alembic.util.exc.CommandError: Can't locate revision identified by
'458c2838cbca'`
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]