zach-overflow commented on code in PR #59239:
URL: https://github.com/apache/airflow/pull/59239#discussion_r2602949931


##########
airflow-core/src/airflow/models/trigger.py:
##########
@@ -97,6 +98,7 @@ class Trigger(Base):
     encrypted_kwargs: Mapped[str] = mapped_column("kwargs", Text, 
nullable=False)
     created_date: Mapped[datetime.datetime] = mapped_column(UtcDateTime, 
nullable=False)
     triggerer_id: Mapped[int | None] = mapped_column(Integer, nullable=True)
+    trigger_queue: Mapped[str] = mapped_column(String(128), nullable=True)

Review Comment:
   I would expect `alembic` to have detected this change, but whenever I follow 
this contributor doc 
[section](https://github.com/apache/airflow/blob/main/contributing-docs/14_metadata_database_updates.rst#metadata-database-updates),
 I get the following issue:
   
   <img width="1076" height="95" alt="Screenshot 2025-12-09 at 9 36 01 AM" 
src="https://github.com/user-attachments/assets/8bbb0b88-26b0-4518-9af0-8e67309633df";
 />
   
   This happens despite running `breeze --backend postgres --db-reset` rebased 
off main latest, so any thoughts on what I might be missing are appreciated!



-- 
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]

Reply via email to