From: Scott Angel Date: Tue, 6 Dec 2022 22:03:55 +0000 (-0600) Subject: LP1987908: Fixing typo in seed data for history.money.age_with_circs X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9dada41bc8dc10c8c93813c6ac198774c30e37bd;p=Evergreen.git LP1987908: Fixing typo in seed data for history.money.age_with_circs Created upgrade sql script to accompany Gina's original commit. Signed-off-by: Scott Angel Signed-off-by: Mary Llewellyn Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/sql/Pg/upgrade/xxxx.data.typo-config-global-flag-history-money-age-with-circs-update.sql b/Open-ILS/src/sql/Pg/upgrade/xxxx.data.typo-config-global-flag-history-money-age-with-circs-update.sql new file mode 100644 index 0000000000..d4f415f937 --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/xxxx.data.typo-config-global-flag-history-money-age-with-circs-update.sql @@ -0,0 +1,10 @@ +BEGIN; + +SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version); + +UPDATE config.global_flag +SET label = 'Age billings and payments when circulations are aged.' +WHERE name = 'history.money.age_with_circs' + AND label = 'Age billings and payments when cirulcations are aged.'; + +COMMIT;