LP1517298: Stamp Upgrade Script
authorJason Boyer <JBoyer@equinoxinitiative.org>
Fri, 11 Sep 2020 20:18:10 +0000 (16:18 -0400)
committerJason Boyer <JBoyer@equinoxinitiative.org>
Fri, 11 Sep 2020 20:18:10 +0000 (16:18 -0400)
Signed-off-by: Jason Boyer <JBoyer@equinoxinitiative.org>
Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/upgrade/1230.data.support_matomo.sql [new file with mode: 0644]
Open-ILS/src/sql/Pg/upgrade/xxxx.data.support_matomo.sql [deleted file]

index 062edd2..5ee86b6 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 ('1229', :eg_version); -- khuckins/csharp/gmcharlt
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1230', :eg_version); -- dbs/sandbergja/jboyer
 
 CREATE TABLE config.bib_source (
        id              SERIAL  PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/upgrade/1230.data.support_matomo.sql b/Open-ILS/src/sql/Pg/upgrade/1230.data.support_matomo.sql
new file mode 100644 (file)
index 0000000..5ff2d31
--- /dev/null
@@ -0,0 +1,36 @@
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1230', :eg_version);
+
+INSERT INTO permission.perm_list
+    ( id, code, description )
+VALUES (
+    623, 'UPDATE_ORG_UNIT_SETTING.opac.matomo', oils_i18n_gettext(623,
+    'Allows a user to configure Matomo Analytics org unit settings', 'ppl', 'description')
+);
+
+INSERT into config.org_unit_setting_type
+    ( name, grp, label, description, datatype, update_perm )
+VALUES (
+    'opac.analytics.matomo_id', 'opac',
+    oils_i18n_gettext(
+    'opac.analytics.matomo_id',
+    'Matomo Site ID',
+    'coust', 'label'),
+    oils_i18n_gettext('opac.analytics.matomo_id',
+    'The Site ID for your Evergreen catalog. You can find the Site ID in the tracking code you got from Matomo.',
+    'coust', 'description'),
+    'string', 623
+), (
+    'opac.analytics.matomo_url', 'opac',
+    oils_i18n_gettext('opac.analytics.matomo_url',
+    'Matomo URL',
+    'coust', 'label'),
+    oils_i18n_gettext('opac.analytics.matomo_url',
+    'The URL for your the Matomo software. Be sure to include the trailing slash, e.g. https://my-evergreen.matomo.cloud/',
+    'coust', 'description'),
+    'string', 623
+);
+
+COMMIT;
+
diff --git a/Open-ILS/src/sql/Pg/upgrade/xxxx.data.support_matomo.sql b/Open-ILS/src/sql/Pg/upgrade/xxxx.data.support_matomo.sql
deleted file mode 100644 (file)
index e75ad44..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version);
-
-INSERT INTO permission.perm_list
-    ( id, code, description )
-VALUES (
-    623, 'UPDATE_ORG_UNIT_SETTING.opac.matomo', oils_i18n_gettext(623,
-    'Allows a user to configure Matomo Analytics org unit settings', 'ppl', 'description')
-);
-
-INSERT into config.org_unit_setting_type
-    ( name, grp, label, description, datatype, update_perm )
-VALUES (
-    'opac.analytics.matomo_id', 'opac',
-    oils_i18n_gettext(
-    'opac.analytics.matomo_id',
-    'Matomo Site ID',
-    'coust', 'label'),
-    oils_i18n_gettext('opac.analytics.matomo_id',
-    'The Site ID for your Evergreen catalog. You can find the Site ID in the tracking code you got from Matomo.',
-    'coust', 'description'),
-    'string', 623
-), (
-    'opac.analytics.matomo_url', 'opac',
-    oils_i18n_gettext('opac.analytics.matomo_url',
-    'Matomo URL',
-    'coust', 'label'),
-    oils_i18n_gettext('opac.analytics.matomo_url',
-    'The URL for your the Matomo software. Be sure to include the trailing slash, e.g. https://my-evergreen.matomo.cloud/',
-    'coust', 'description'),
-    'string', 623
-);
-
-COMMIT;
-