fixed crash and autorestart

This commit is contained in:
erik 2025-05-25 19:33:48 +00:00
parent 09404da121
commit d9b3b403da
2 changed files with 8 additions and 2 deletions

View file

@ -23,7 +23,7 @@ telemetry_events = Table(
"telemetry_events",
metadata,
Column("id", Integer, primary_key=True),
Column("character_name", String, nullable=False),
Column("character_name", String, nullable=False, index=True),
Column("char_tag", String, nullable=True),
Column("session_id", String, nullable=False, index=True),
Column("timestamp", DateTime(timezone=True), nullable=False, index=True),