Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed .agents/journal/bolt.md
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
databaseChangeLog:
- changeSet:
id: 003d-add-workspace-indexes
author: bolt
comment: |
Add indexes to optimize workspace-related queries.
- idx_workspaces_owner_id: Optimizes finding workspaces by owner.
- idx_workspace_members_user_id: Optimizes finding workspaces a user belongs to.
changes:
- createIndex:
tableName: workspaces
indexName: idx_workspaces_owner_id
columns:
- column:
name: owner_id
- createIndex:
tableName: workspace_members
indexName: idx_workspace_members_user_id
columns:
- column:
name: user_id
rollback:
- dropIndex:
tableName: workspaces
indexName: idx_workspaces_owner_id
- dropIndex:
tableName: workspace_members
indexName: idx_workspace_members_user_id
Loading