]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0803.data.fill_empty_description.sql
LP#1744385: Additions and edits to release note entry
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0803.data.fill_empty_description.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0803', :eg_version);
4
5 UPDATE config.org_unit_setting_type 
6 SET description = oils_i18n_gettext('circ.holds.default_shelf_expire_interval',
7         'The amount of time an item will be held on the shelf before the hold expires. For example: "2 weeks" or "5 days"',
8         'coust', 'description')
9 WHERE name = 'circ.holds.default_shelf_expire_interval';
10
11 COMMIT;