ephraimbuddy commented on code in PR #46322:
URL: https://github.com/apache/airflow/pull/46322#discussion_r1938058138
##########
airflow/migrations/versions/0057_3_0_0_add_new_task_instance_field_scheduled_.py:
##########
@@ -42,23 +42,17 @@
def upgrade():
"""Apply add new task_instance field scheduled_dttm."""
- # ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table("task_instance", schema=None) as batch_op:
batch_op.add_column(sa.Column("scheduled_dttm",
UtcDateTime(timezone=True), nullable=True))
with op.batch_alter_table("task_instance_history", schema=None) as
batch_op:
batch_op.add_column(sa.Column("scheduled_dttm",
UtcDateTime(timezone=True), nullable=True))
- # ### end Alembic commands ###
-
Review Comment:
Nice. Can you also do the same for Fab provider
--
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]