[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. aec49df028acb2b1226ab208eb66a540eb983083

Evergreen Git git at git.evergreen-ils.org
Mon Feb 18 13:38:32 EST 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_3_2 has been updated
       via  aec49df028acb2b1226ab208eb66a540eb983083 (commit)
       via  fb3116c996850f38ac333d8e2faeb0a64b78dd6c (commit)
      from  e4b7c9d0e0818de77b7baf0aa1850bd359c2ddaa (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit aec49df028acb2b1226ab208eb66a540eb983083
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date:   Mon Feb 18 13:37:00 2019 -0500

    LP#1806709: stamp schema update
    
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/sql/Pg/002.schema.config.sql b/Open-ILS/src/sql/Pg/002.schema.config.sql
index 0eefd040dc..fc8ff662fe 100644
--- a/Open-ILS/src/sql/Pg/002.schema.config.sql
+++ b/Open-ILS/src/sql/Pg/002.schema.config.sql
@@ -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 ('1142', :eg_version); -- csharp/bshum
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1149', :eg_version); -- Dyrcona/mmorgan/gmcharlt
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.circ-billing-history-grid-persist-key.sql b/Open-ILS/src/sql/Pg/upgrade/1149.data.circ-billing-history-grid-persist-key.sql
similarity index 76%
rename from Open-ILS/src/sql/Pg/upgrade/XXXX.data.circ-billing-history-grid-persist-key.sql
rename to Open-ILS/src/sql/Pg/upgrade/1149.data.circ-billing-history-grid-persist-key.sql
index 0978c9fbc7..ac4d65f36c 100644
--- a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.circ-billing-history-grid-persist-key.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/1149.data.circ-billing-history-grid-persist-key.sql
@@ -1,6 +1,6 @@
 BEGIN;
 
--- SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+SELECT evergreen.upgrade_deps_block_check('1149', :eg_version); -- Dyrcona/mmorgan/gmcharlt
 
 INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
 VALUES (

commit fb3116c996850f38ac333d8e2faeb0a64b78dd6c
Author: Jason Stephenson <jason at sigio.com>
Date:   Wed Dec 5 14:55:30 2018 -0500

    Lp 1806709: Add circ.patron.billhistory_xacts persist key to database.
    
    We add the eg.grid.circ.patron.billhistory_xacts persist key to
    config.workstation_setting_type in the database.
    
    This is a follow-on to the LP1739606: Allow saving Billing History
    xacts grid commit and should be applied to master and rel_3_2.
    
    Signed-off-by: Jason Stephenson <jason at sigio.com>
    Signed-off-by: Michele Morgan <mmorgan at noblenet.org>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql
index 949021b83d..8710629e59 100644
--- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql
+++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql
@@ -19291,6 +19291,13 @@ VALUES (
         'Serials Barcode On Receive',
         'cwst', 'label'
     )
+), (
+  'eg.grid.circ.patron.billhistory_xacts', 'gui', 'object',
+  oils_i18n_gettext(
+    'eg.grid.circ.patron.billhistory_xacts',
+    'Grid Config: circ.patron.billhistory_xacts',
+    'cwst', 'label'
+  )
 );
 
 
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.circ-billing-history-grid-persist-key.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.circ-billing-history-grid-persist-key.sql
new file mode 100644
index 0000000000..0978c9fbc7
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.circ-billing-history-grid-persist-key.sql
@@ -0,0 +1,15 @@
+BEGIN;
+
+-- SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+  'eg.grid.circ.patron.billhistory_xacts', 'gui', 'object',
+  oils_i18n_gettext(
+    'eg.grid.circ.patron.billhistory_xacts',
+    'Grid Config: circ.patron.billhistory_xacts',
+    'cwst', 'label'
+  )
+);
+
+COMMIT;

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/sql/Pg/002.schema.config.sql                 |  2 +-
 Open-ILS/src/sql/Pg/950.data.seed-values.sql              |  7 +++++++
 .../1149.data.circ-billing-history-grid-persist-key.sql   | 15 +++++++++++++++
 3 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 Open-ILS/src/sql/Pg/upgrade/1149.data.circ-billing-history-grid-persist-key.sql


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list