ashb commented on a change in pull request #4368: [AIRFLOW-3561] Improve queries
URL: https://github.com/apache/airflow/pull/4368#discussion_r247225088
##########
File path: airflow/models/__init__.py
##########
@@ -2999,15 +2999,29 @@ class DagModel(Base):
fileloc = Column(String(2000))
# String representing the owners
owners = Column(String(2000))
+ # Description of the dag
+ description = Column(Text)
+ # Default view of the inside the webserver
+ default_view = Column(String(25))
def __repr__(self):
return "<DAG: {self.dag_id}>".format(self=self)
+ @property
+ def timezone(self):
+ return settings.TIMEZONE
Review comment:
I don't mean removed, I mean added.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services