From 9dada41bc8dc10c8c93813c6ac198774c30e37bd Mon Sep 17 00:00:00 2001 From: Scott Angel Date: Tue, 6 Dec 2022 16:03:55 -0600 Subject: [PATCH] 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 --- ...-config-global-flag-history-money-age-with-circs-update.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Open-ILS/src/sql/Pg/upgrade/xxxx.data.typo-config-global-flag-history-money-age-with-circs-update.sql 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; -- 2.11.0