]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1404.data.default_owning_lib_for_auto_lids_strategy_typo_fix.sql
LP2063980: remove long-commented code
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1404.data.default_owning_lib_for_auto_lids_strategy_typo_fix.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1404', :eg_version);
4
5 UPDATE config.org_unit_setting_type
6 SET description = oils_i18n_gettext('acq.default_owning_lib_for_auto_lids_strategy',
7         'Strategy to use when setting the default owning library for line item items that are auto-created due to the provider''s default copy count being set. Valid values are "workstation" to use the workstation library, "blank" to leave it blank, and "use_setting" to use the "Default owning library for auto-created line item items" setting. If not set, the workstation library will be used.',
8         'coust', 'description')
9 WHERE name = 'acq.default_owning_lib_for_auto_lids_strategy'
10 AND description = 'Stategy to use to set default owning library to set when line item items are auto-created because the provider''s default copy count has been set. Valid values are "workstation" to use the workstation library, "blank" to leave it blank, and "use_setting" to use the "Default owning library for auto-created line item items" setting. If not set, the workstation library will be used.';
11
12 COMMIT;