mirror of
https://github.com/coder/coder.git
synced 2026-09-22 21:22:17 +08:00
Add `agent_firewall_session_id` (UUID NULL) and `agent_firewall_sequence_number` (INT NULL) to `aibridge_interceptions` with a partial index on `agent_firewall_session_id`. No FK to `boundary_sessions` (soft reference, resolved at query time). `RecordInterception` reads the new fields from the proto request (merged in #25884) via `parseOptionalUUID` / `parseOptionalInt32` helpers. > This PR was authored by Coder Agents.
6 lines
222 B
SQL
6 lines
222 B
SQL
DROP INDEX IF EXISTS idx_aibridge_interceptions_agent_firewall_session_id;
|
|
|
|
ALTER TABLE aibridge_interceptions
|
|
DROP COLUMN IF EXISTS agent_firewall_sequence_number,
|
|
DROP COLUMN IF EXISTS agent_firewall_session_id;
|