feat: auto-trigger Discord wakeup when slot becomes ONGOING

This commit is contained in:
2026-04-05 09:37:14 +00:00
parent 57681c674f
commit 755c418391
3 changed files with 53 additions and 0 deletions

View File

@@ -165,6 +165,12 @@ class TimeSlot(Base):
comment="Lifecycle status of this slot",
)
wakeup_sent_at = Column(
DateTime(timezone=True),
nullable=True,
comment="When Discord wakeup was sent for this slot",
)
plan_id = Column(
Integer,
ForeignKey("schedule_plans.id"),