Skip to content

Commit

Permalink
Merge pull request #984 from mohanish2504/mohanish/postgres_optimization
Browse files Browse the repository at this point in the history
Perf/Postgres Index Optimization and Benchmarking
  • Loading branch information
tolgaOzen committed Jan 2, 2024
2 parents 8bf10c2 + ba993e6 commit 70d5744
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
-- +goose NO TRANSACTION
-- +goose Up
-- +goose StatementBegin
CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_schema_version ON schema_definitions (version);
-- +goose StatementEnd

-- +goose Down
-- +goose StatementBegin
DROP INDEX CONCURRENTLY IF EXISTS idx_schema_version;
-- +goose StatementEnd

0 comments on commit 70d5744

Please sign in to comment.