mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
Unify log queries to only have SQLX code in the runtime and use it for both the log client and for tests
4 lines
97 B
SQL
4 lines
97 B
SQL
ALTER TABLE logs ADD COLUMN thread_id TEXT;
|
|
|
|
CREATE INDEX idx_logs_thread_id ON logs(thread_id);
|