adding the beginnings of a post-upgrade script
authorChris Sharp <csharp@georgialibraries.org>
Thu, 19 Dec 2013 14:31:58 +0000 (09:31 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Thu, 6 Nov 2014 17:54:03 +0000 (12:54 -0500)
Open-ILS/src/sql/Pg/version-upgrade/pines-post-2.5-db-upgrade.sql [new file with mode: 0644]

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 (file)
index 0000000..2887fa3
--- /dev/null
@@ -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;