Skip to content

Commit

Permalink
merge branch.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
Changaco committed Oct 8, 2024
1 parent 64230e6 commit 6cf6eb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion sql/branch.sql

This file was deleted.

3 changes: 3 additions & 0 deletions sql/migrations.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3488,3 +3488,6 @@ CREATE INDEX public_name_trgm_idx ON participants
USING GIN (lower(public_name) gin_trgm_ops)
WHERE status = 'active'
AND public_name IS NOT null;

-- migration #178
UPDATE exchange_routes SET is_default_for = 'EUR', is_default = null WHERE network = 'stripe-sdd' AND is_default;
2 changes: 1 addition & 1 deletion sql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COMMENT ON EXTENSION pg_stat_statements IS 'track execution statistics of all SQ

-- database metadata
CREATE TABLE db_meta (key text PRIMARY KEY, value jsonb);
INSERT INTO db_meta (key, value) VALUES ('schema_version', '177'::jsonb);
INSERT INTO db_meta (key, value) VALUES ('schema_version', '178'::jsonb);


-- app configuration
Expand Down

0 comments on commit 6cf6eb2

Please sign in to comment.