mirror of
https://github.com/coder/coder.git
synced 2026-06-03 04:58:23 +00:00
0a6ba5d51a
Co-authored-by: Dean Sheather <dean@deansheather.com>
10 lines
380 B
SQL
10 lines
380 B
SQL
-- This is used for consistent cursor pagination.
|
|
CREATE INDEX IF NOT EXISTS idx_aibridge_interceptions_started_id_desc
|
|
ON aibridge_interceptions (started_at DESC, id DESC);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_aibridge_interceptions_provider
|
|
ON aibridge_interceptions (provider);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_aibridge_interceptions_model
|
|
ON aibridge_interceptions (model);
|