Skip to content

Commit

Permalink
fix: remove duration from sql_model.TaskExecution
Browse files Browse the repository at this point in the history
  • Loading branch information
marthevienne committed Feb 7, 2025
1 parent 99ef80b commit c5af894
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/bloom/infra/database/sql_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ class TaskExecution(Base):
point_in_time = Column("point_in_time", DateTime(timezone=True))
created_at = Column("created_at", DateTime(timezone=True), server_default=func.now())
updated_at = Column("updated_at", DateTime(timezone=True), onupdate=func.now())
duration = Column("duration", Interval, nullable=True)
delta = Column("delta", Interval, nullable=False)
active = Column("active", Boolean, nullable=False)
position_count = Column("position_count", Integer, nullable=True)
Expand Down

0 comments on commit c5af894

Please sign in to comment.