From: Dan Scott Date: Thu, 27 Sep 2012 03:25:53 +0000 (-0400) Subject: Apply the 0715 update for acq settings_group X-Git-Tag: sprint4-merge-nov22~3673 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=16338e46b329d2ba5b89f607854bd1b57008981f;p=working%2FEvergreen.git Apply the 0715 update for acq settings_group We add the 'acq' config.settings_group in the seed data, and add the other settings groups in the 2.1-2.2 upgrade script, but need to add the acq settings_group to the 2.1-2.2 upgrade script. Signed-off-by: Dan Scott Signed-off-by: Lebbeous Fogle-Weekley --- diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql index bd7b2b9b0f..8c88ab39cc 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql @@ -12418,6 +12418,15 @@ INSERT INTO permission.perm_list ( id, code, description ) ) ); +-- 0715.data.add_acq_config_group +SELECT evergreen.upgrade_deps_block_check('0715', :eg_version); + +INSERT INTO config.settings_group (name, label) VALUES +('acq', oils_i18n_gettext('config.settings_group.system', 'Acquisitions', 'coust', 'label')); + +UPDATE config.org_unit_setting_type + SET grp = 'acq' + WHERE name LIKE 'acq%'; -- Evergreen DB patch 0716.coded_value_map_id_seq_fix.sql