From: Galen Charlton Date: Mon, 4 Oct 2021 16:28:14 +0000 (-0400) Subject: LP#1826759: end DB update scripts with "COMMIT", not "END" X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ee268105bc72f50d6d16c747ebe597a52b92b2b2;p=Evergreen.git LP#1826759: end DB update scripts with "COMMIT", not "END" The former is what tools like make_release are looking for. Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/sql/Pg/upgrade/1302.data.lp1826759_items_out_typo.sql b/Open-ILS/src/sql/Pg/upgrade/1302.data.lp1826759_items_out_typo.sql index 6280dc70df..e9d0744fd4 100644 --- a/Open-ILS/src/sql/Pg/upgrade/1302.data.lp1826759_items_out_typo.sql +++ b/Open-ILS/src/sql/Pg/upgrade/1302.data.lp1826759_items_out_typo.sql @@ -47,4 +47,4 @@ UPDATE config.org_unit_setting_type ) WHERE name = 'ui.circ.items_out.claimsreturned'; -END; +COMMIT;