From: Remington Steed Date: Wed, 10 Jul 2013 13:32:07 +0000 (-0400) Subject: LP1158211 - add upgrade script to fill empty description X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=13119470e51759229ecb26a53955bee77841f018;p=evergreen%2Fequinox.git LP1158211 - add upgrade script to fill empty description Signed-off-by: Remington Steed Signed-off-by: Dan Wells --- diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.fill_empty_description.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.fill_empty_description.sql new file mode 100644 index 0000000000..ce297b58ba --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.fill_empty_description.sql @@ -0,0 +1,9 @@ +BEGIN; + +SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version); + +UPDATE config.org_unit_setting_type +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"' +WHERE name = 'circ.holds.default_shelf_expire_interval'; + +COMMIT;