Skip to content

Commit

Permalink
BCF-2697: correct wrong search path in migration (#10985)
Browse files Browse the repository at this point in the history
  • Loading branch information
krehermann authored Oct 18, 2023
1 parent f468fa6 commit 3f43eb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions core/store/migrate/migrations/0194_evm_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,4 @@ CREATE TRIGGER notify_eth_tx_insertion AFTER INSERT ON public.eth_txes FOR EACH
-- +goose StatementEnd

DROP SCHEMA evm;
SET search_path TO public;
4 changes: 4 additions & 0 deletions core/store/migrate/migrations/0203_search_path.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- +goose Up
-- BFC-2694 - fix search path so public takes precedence. No need for a downward migration.
SET search_path TO public,evm;

0 comments on commit 3f43eb0

Please sign in to comment.