feat(api): add audit helpers, tool registry, shared tool manifest types, and UI primitives
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
-- 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");
|
||||
Reference in New Issue
Block a user