mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-26 20:45:37 +02:00
* revert(issues): restore server-backed table grouping Co-authored-by: multica-agent <github@multica.ai> * test(skills): stabilize import completion coverage Co-authored-by: multica-agent <github@multica.ai> --------- Co-authored-by: Eve <eve@multica-ai.local> Co-authored-by: multica-agent <github@multica.ai>
5 lines
248 B
SQL
5 lines
248 B
SQL
-- Serve the Table API's default keyset order without scanning and sorting the
|
|
-- entire workspace on every page.
|
|
CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_issue_workspace_position
|
|
ON issue (workspace_id, position, created_at DESC, id DESC);
|