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.
8 lines
371 B
SQL
8 lines
371 B
SQL
ALTER TABLE aibridge_interceptions
|
|
ADD COLUMN client_session_id VARCHAR(256) NULL;
|
|
|
|
COMMENT ON COLUMN aibridge_interceptions.client_session_id IS 'The session ID supplied by the client (optional and not universally supported).';
|
|
|
|
CREATE INDEX idx_aibridge_interceptions_client_session_id ON aibridge_interceptions (client_session_id)
|
|
WHERE client_session_id IS NOT NULL;
|