mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
90c11f3386
Adds `client` column to `aibridge_interceptions` table. It is set accordingly to what is passed from AI Bridge in `RecordInterception`. Adds interception filtering by `client` value. Depends on: https://github.com/coder/aibridge/pull/158 Updates aibridge library to include this change. Fixes: https://github.com/coder/aibridge/issues/31
6 lines
173 B
SQL
6 lines
173 B
SQL
ALTER TABLE aibridge_interceptions
|
|
ADD COLUMN client VARCHAR(64)
|
|
DEFAULT 'Unknown';
|
|
|
|
CREATE INDEX idx_aibridge_interceptions_client ON aibridge_interceptions (client);
|