uranusjr commented on code in PR #57360:
URL: https://github.com/apache/airflow/pull/57360#discussion_r2488616509
##########
airflow-core/src/airflow/models/asset.py:
##########
@@ -784,6 +784,7 @@ class AssetEvent(Base):
source_run_id: Mapped[str | None] = mapped_column(StringID(),
nullable=True)
source_map_index: Mapped[int | None] = mapped_column(Integer,
nullable=True, server_default=text("-1"))
timestamp: Mapped[datetime] = mapped_column(UtcDateTime,
default=timezone.utcnow, nullable=False)
+ partition_key: Mapped[str | None] = mapped_column(StringID(),
nullable=True)
Review Comment:
Nit: Add this to the docstring above. Also probably nice to move it above
`timestamp`?
--
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]