mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
13e3df67d6
This change adds support for tracking client session IDs in AI Bridge interceptions to enable better session-based auditing. Depends on https://github.com/coder/aibridge/pull/198 Fixes https://github.com/coder/internal/issues/1337 The session ID field is optional and not universally supported by all clients.
5 lines
134 B
SQL
5 lines
134 B
SQL
DROP INDEX IF EXISTS idx_aibridge_interceptions_client_session_id;
|
|
|
|
ALTER TABLE aibridge_interceptions
|
|
DROP COLUMN client_session_id;
|