Persistent Browser Session Uptime cost metering/credit consumption + Posthog flags for billing v2 (#4444)

This commit is contained in:
Marc Kelechava
2026-01-14 23:19:46 -08:00
committed by GitHub
parent 9cf1f87514
commit 95cb87119f
3 changed files with 47 additions and 1 deletions

View File

@@ -948,7 +948,7 @@ class DebugSessionModel(Base):
debug_session_id = Column(String, primary_key=True, default=generate_debug_session_id)
organization_id = Column(String, nullable=False)
browser_session_id = Column(String, nullable=False)
browser_session_id = Column(String, nullable=False, index=True)
vnc_streaming_supported = Column(Boolean, nullable=True, server_default=sqlalchemy.true())
workflow_permanent_id = Column(String, nullable=True)
user_id = Column(String, nullable=True) # comes from identity vendor (Clerk at time of writing)