Skip to content

Commit

Permalink
Merge pull request #17 from openfort-xyz/feat/new-index
Browse files Browse the repository at this point in the history
chore: add index on shld_external_users for external_user_id, provide…
  • Loading branch information
gllm-dev authored Dec 12, 2024
2 parents 50c8df0 + 0cb9274 commit 1167bdf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.1.25]
### Added
- Index on external users table

## [v0.1.24]
### Added
- Health check endpoint
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- +goose Up
CREATE INDEX idx_external_user_provider_deleted ON shld_external_users (external_user_id, provider_id, deleted_at);
-- +goose StatementBegin
-- +goose StatementEnd

-- +goose Down
DROP INDEX idx_external_user_provider_deleted ON shld_external_users;
-- +goose StatementBegin
-- +goose StatementEnd

0 comments on commit 1167bdf

Please sign in to comment.