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 16, 2023
1 parent b16d6cb commit 75b0123
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion sql/branch.sql

This file was deleted.

5 changes: 5 additions & 0 deletions sql/composites.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@ $$ LANGUAGE SQL;

CREATE CAST (elsewhere AS elsewhere_with_participant)
WITH FUNCTION load_participant_for_elsewhere(elsewhere);


-- * LocalizedString

CREATE TYPE localized_string AS (string text, lang text);
3 changes: 3 additions & 0 deletions sql/migrations.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3420,3 +3420,6 @@ ALTER TABLE exchange_routes ADD COLUMN is_default_for currency;
ALTER TABLE elsewhere ADD COLUMN last_fetch_attempt timestamptz;
ALTER TABLE repositories ADD COLUMN last_fetch_attempt timestamptz;
DELETE FROM rate_limiting WHERE key LIKE 'refetch_%';

-- migration #170
CREATE TYPE localized_string AS (string text, lang text);
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', '169'::jsonb);
INSERT INTO db_meta (key, value) VALUES ('schema_version', '170'::jsonb);


-- app configuration
Expand Down

0 comments on commit 75b0123

Please sign in to comment.