]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0803.data.fill_empty_description.sql
590e7178d9e9ba9fe17570bfc98bdd1da57caf3d
[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 = 'The amount of time an item will be held on the shelf before the hold expires. For example: "2 weeks" or "5 days"' 
7 WHERE name = 'circ.holds.default_shelf_expire_interval';
8
9 COMMIT;