]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql
LP#1982031: (follow-up) corrections to DB update
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.data.org-setting-enc-desc.sql
1 BEGIN;
2
3 UPDATE config.org_unit_setting_type
4     SET label = 'Rollover encumbrances only',
5         description = 'Rollover encumbrances only when doing fiscal year end.  This makes money left in the old fund disappear, modeling its return to some outside entity.'
6     WHERE name = 'acq.fund.allow_rollover_without_money'
7     AND label = 'Allow funds to be rolled over without bringing the money along'
8     AND description = 'Allow funds to be rolled over without bringing the money along.  This makes money left in the old fund disappear, modeling its return to some outside entity.';
9
10 COMMIT;