43de66e982
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
455 B
SQL
9 lines
455 B
SQL
-- Add composite indexes on Assignment for status+date-range queries
|
|
-- These speed up cross-project status scans and project-scoped status+date filters.
|
|
|
|
CREATE INDEX CONCURRENTLY IF NOT EXISTS "assignments_status_startDate_endDate_idx"
|
|
ON "assignments" ("status", "startDate", "endDate");
|
|
|
|
CREATE INDEX CONCURRENTLY IF NOT EXISTS "assignments_projectId_status_startDate_endDate_idx"
|
|
ON "assignments" ("projectId", "status", "startDate", "endDate");
|