Skip to content

Commit

Permalink
[SUPPORT-13357] Fix 2.3.1->2.3.2 Postgres upgrade syntax (#1597)
Browse files Browse the repository at this point in the history
  • Loading branch information
puckipedia authored Nov 29, 2022
1 parent 5aedf6e commit f6fde87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datamodel/upgrade_scripts/2.3.1-2.3.2/postgresql/rsgb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

set search_path = public,bag;

ALTER TABLE ingeschr_niet_nat_prs MODIFY publiekrechtelijke_rechtsvorm VARCHAR2(60);
ALTER TABLE functionaris MODIFY soort_bev VARCHAR2(50);
ALTER TABLE ingeschr_niet_nat_prs ALTER COLUMN publiekrechtelijke_rechtsvorm TYPE VARCHAR(60);
ALTER TABLE functionaris ALTER COLUMN soort_bev TYPE VARCHAR(50);

-- onderstaande dienen als laatste stappen van een upgrade uitgevoerd
INSERT INTO brmo_metadata (naam,waarde) SELECT 'upgrade_2.3.1_naar_2.3.2','vorige versie was ' || waarde FROM brmo_metadata WHERE naam='brmoversie';
Expand Down

0 comments on commit f6fde87

Please sign in to comment.