This is an automated email from the ASF dual-hosted git repository.

rahulvats pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 71d62ffc7d0 add missing index (#63424)
71d62ffc7d0 is described below

commit 71d62ffc7d0900f16bd8e0cefdda3b5c633fc08f
Author: Rahul Vats <[email protected]>
AuthorDate: Thu Mar 12 17:27:18 2026 +0530

    add missing index (#63424)
---
 .../src/airflow/migrations/versions/0096_3_2_0_remove_team_id.py         | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/airflow-core/src/airflow/migrations/versions/0096_3_2_0_remove_team_id.py 
b/airflow-core/src/airflow/migrations/versions/0096_3_2_0_remove_team_id.py
index 1b122d42d91..32eeeed2dd2 100644
--- a/airflow-core/src/airflow/migrations/versions/0096_3_2_0_remove_team_id.py
+++ b/airflow-core/src/airflow/migrations/versions/0096_3_2_0_remove_team_id.py
@@ -139,6 +139,7 @@ def downgrade():
             )
 
     with op.batch_alter_table("dag_bundle_team") as batch_op:
+        batch_op.create_index("idx_dag_bundle_team_team_id", ["team_id"])
         batch_op.create_foreign_key(
             "dag_bundle_team_team_id_fkey",
             "team",

Reply via email to