From: Chris Sharp Date: Thu, 19 Dec 2013 14:31:58 +0000 (-0500) Subject: adding the beginnings of a post-upgrade script X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6356b38e7a4a84c6e22fd49b554484a4f0e70c0a;p=evergreen%2Fpines.git adding the beginnings of a post-upgrade script --- diff --git a/Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-db-upgrade.sql b/Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-db-upgrade.sql new file mode 100644 index 0000000000..2887fa3ac9 --- /dev/null +++ b/Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-db-upgrade.sql @@ -0,0 +1,9 @@ +-- To be run after the 2.5.0-2.5.1 script + +BEGIN; + +-- add new PINES settings + +INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (1, 'circ.patron_expires_soon_warning', '30'); + +COMMIT;