Skip to content

Commit

Permalink
fixup! fix (cache/db): add indexes for desktop queries
Browse files Browse the repository at this point in the history
  • Loading branch information
jimlambrt committed Sep 9, 2024
1 parent 749cb58 commit 05420fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/clientcache/internal/db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ type schema struct {

const (
schemaTableName = "schema_version"
schemaCurrentVersion = "v0.0.1"
schemaCurrentVersion = "v0.0.2"
)

// TableName returns the table name
Expand Down
2 changes: 1 addition & 1 deletion internal/clientcache/internal/db/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ when
end;


insert into schema_version(version) values('v0.0.1');
insert into schema_version(version) values('v0.0.2');

-- user contains the boundary user information for the boundary user that owns
-- the information in the cache.
Expand Down

0 comments on commit 05420fe

Please sign in to comment.