amoghrajesh commented on code in PR #57131:
URL: https://github.com/apache/airflow/pull/57131#discussion_r2453982631
##########
airflow/migrations/versions/0135_2_9_0_add_run_id_to_audit_log_table_and_change_event_name_length.py:
##########
@@ -58,9 +58,11 @@ def downgrade():
conn = op.get_bind()
if conn.dialect.name == "mssql":
with op.batch_alter_table("log") as batch_op:
+ batch_op.execute(sa.text("UPDATE log SET event = '' WHERE event IS
NULL"))
Review Comment:
Sounds good
--
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]