Implement session outcomes, step timing, and live timer fixes
This commit is contained in:
@@ -45,6 +45,8 @@ class Session(Base):
|
||||
nullable=True,
|
||||
index=True
|
||||
)
|
||||
outcome: Mapped[Optional[str]] = mapped_column(String(20), nullable=True, index=True)
|
||||
outcome_notes: Mapped[Optional[str]] = mapped_column(Text, nullable=True)
|
||||
ticket_number: Mapped[Optional[str]] = mapped_column(String(100), nullable=True)
|
||||
client_name: Mapped[Optional[str]] = mapped_column(String(255), nullable=True)
|
||||
exported: Mapped[bool] = mapped_column(Boolean, default=False)
|
||||
|
||||
Reference in New Issue
Block a user