LP#1774724 - stamp upgrade script
authorChris Sharp <csharp@georgialibraries.org>
Thu, 13 Sep 2018 15:47:55 +0000 (11:47 -0400)
committerChris Sharp <csharp@georgialibraries.org>
Thu, 13 Sep 2018 15:47:55 +0000 (11:47 -0400)
Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/upgrade/1132.data.yaous_longoverdue_descrip_typos.sql [new file with mode: 0644]
Open-ILS/src/sql/Pg/upgrade/XXXX.data.yaous_longoverdue_descrip_typos.sql [deleted file]

index 524fcad..b864fd3 100644 (file)
@@ -92,7 +92,7 @@ CREATE TRIGGER no_overlapping_deps
     BEFORE INSERT OR UPDATE ON config.db_patch_dependencies
     FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
 
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1131', :eg_version); -- gmcharlt
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1132', :eg_version); -- remingtron/csharp
 
 CREATE TABLE config.bib_source (
        id              SERIAL  PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/upgrade/1132.data.yaous_longoverdue_descrip_typos.sql b/Open-ILS/src/sql/Pg/upgrade/1132.data.yaous_longoverdue_descrip_typos.sql
new file mode 100644 (file)
index 0000000..85cc14d
--- /dev/null
@@ -0,0 +1,26 @@
+BEGIN;
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('1132', :eg_version); -- remingtron/csharp
+
+-- fix two typo/pasto's in setting descriptions
+UPDATE config.org_unit_setting_type
+SET description = oils_i18n_gettext(
+       'circ.copy_alerts.forgive_fines_on_long_overdue_checkin',
+       'Controls whether fines are automatically forgiven when checking out an '||
+       'item that has been marked as long-overdue, and the corresponding copy alert has been '||
+       'suppressed.',
+       'coust', 'description'
+)
+WHERE NAME = 'circ.copy_alerts.forgive_fines_on_long_overdue_checkin';
+
+UPDATE config.org_unit_setting_type
+SET description = oils_i18n_gettext(
+       'circ.longoverdue.xact_open_on_zero',
+       'Leave transaction open when long-overdue balance equals zero.  ' ||
+       'This leaves the long-overdue copy on the patron record when it is paid',
+       'coust', 'description'
+)
+WHERE NAME = 'circ.longoverdue.xact_open_on_zero';
+
+COMMIT;
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.yaous_longoverdue_descrip_typos.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.yaous_longoverdue_descrip_typos.sql
deleted file mode 100644 (file)
index babcbed..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-BEGIN;
-
--- check whether patch can be applied
-SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
-
--- fix two typo/pasto's in setting descriptions
-UPDATE config.org_unit_setting_type
-SET description = oils_i18n_gettext(
-       'circ.copy_alerts.forgive_fines_on_long_overdue_checkin',
-       'Controls whether fines are automatically forgiven when checking out an '||
-       'item that has been marked as long-overdue, and the corresponding copy alert has been '||
-       'suppressed.',
-       'coust', 'description'
-)
-WHERE NAME = 'circ.copy_alerts.forgive_fines_on_long_overdue_checkin';
-
-UPDATE config.org_unit_setting_type
-SET description = oils_i18n_gettext(
-       'circ.longoverdue.xact_open_on_zero',
-       'Leave transaction open when long-overdue balance equals zero.  ' ||
-       'This leaves the long-overdue copy on the patron record when it is paid',
-       'coust', 'description'
-)
-WHERE NAME = 'circ.longoverdue.xact_open_on_zero';
-
-COMMIT;