LP#1779158 Stamping upgrade scripts for Angular Vandelay
authorDan Wells <dbw2@calvin.edu>
Tue, 19 Feb 2019 23:14:49 +0000 (18:14 -0500)
committerDan Wells <dbw2@calvin.edu>
Tue, 19 Feb 2019 23:14:49 +0000 (18:14 -0500)
Signed-off-by: Dan Wells <dbw2@calvin.edu>
Open-ILS/src/sql/Pg/upgrade/1150.data.vandelay-grid-settings.sql [new file with mode: 0644]
Open-ILS/src/sql/Pg/upgrade/1151.data.vandelay-template-settings.sql [new file with mode: 0644]
Open-ILS/src/sql/Pg/upgrade/XXXX.data.vandelay-grid-settings.sql [deleted file]
Open-ILS/src/sql/Pg/upgrade/YYYY.data.vandelay-template-settings.sql [deleted file]

diff --git a/Open-ILS/src/sql/Pg/upgrade/1150.data.vandelay-grid-settings.sql b/Open-ILS/src/sql/Pg/upgrade/1150.data.vandelay-grid-settings.sql
new file mode 100644 (file)
index 0000000..9b45201
--- /dev/null
@@ -0,0 +1,88 @@
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1150', :eg_version);
+
+INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+    'eg.grid.cat.vandelay.queue.bib', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.cat.vandelay.queue.bib',
+        'Grid Config: Vandelay Bib Queue',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.cat.vandelay.queue.authority', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.cat.vandelay.queue.authority',
+        'Grid Config: Vandelay Authority Queue',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.cat.vandelay.match_set.list', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.cat.vandelay.match_set.list',
+        'Grid Config: Vandelay Match Sets',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.cat.vandelay.match_set.quality', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.cat.vandelay.match_set.quality',
+        'Grid Config: Vandelay Match Quality Metrics',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.cat.vandelay.queue.items', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.cat.vandelay.queue.items',
+        'Grid Config: Vandelay Queue Import Items',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.cat.vandelay.queue.list.bib', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.cat.vandelay.queue.list.bib',
+        'Grid Config: Vandelay Bib Queue List',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.cat.vandelay.queue.bib.items', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.cat.vandelay.queue.bib.items',
+        'Grid Config: Vandelay Bib Items',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.cat.vandelay.queue.list.auth', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.cat.vandelay.queue.list.auth',
+        'Grid Config: Vandelay Authority Queue List',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.admin.vandelay.merge_profile', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.admin.vandelay.merge_profile',
+        'Grid Config: Vandelay Merge Profiles',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.admin.vandelay.bib_attr_definition', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.admin.vandelay.bib_attr_definition',
+        'Grid Config: Vandelay Bib Record Attributes',
+        'cwst', 'label'
+    )
+), (
+    'eg.grid.admin.vandelay.import_item_attr_definition', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.admin.vandelay.import_item_attr_definition',
+        'Grid Config: Vandelay Import Item Attributes',
+        'cwst', 'label'
+    )
+);
+
+
+COMMIT;
+
+
diff --git a/Open-ILS/src/sql/Pg/upgrade/1151.data.vandelay-template-settings.sql b/Open-ILS/src/sql/Pg/upgrade/1151.data.vandelay-template-settings.sql
new file mode 100644 (file)
index 0000000..304c03a
--- /dev/null
@@ -0,0 +1,15 @@
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1151', :eg_version);
+
+INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+    'eg.cat.vandelay.import.templates', 'cat', 'object',
+    oils_i18n_gettext(
+        'eg.cat.vandelay.import.templates',
+        'Vandelay Import Form Templates',
+        'cwst', 'label'
+    )
+);
+
+COMMIT;
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.vandelay-grid-settings.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.vandelay-grid-settings.sql
deleted file mode 100644 (file)
index 35726a4..0000000
+++ /dev/null
@@ -1,88 +0,0 @@
-BEGIN;
-
---SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
-
-INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
-VALUES (
-    'eg.grid.cat.vandelay.queue.bib', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.cat.vandelay.queue.bib',
-        'Grid Config: Vandelay Bib Queue',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.cat.vandelay.queue.authority', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.cat.vandelay.queue.authority',
-        'Grid Config: Vandelay Authority Queue',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.cat.vandelay.match_set.list', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.cat.vandelay.match_set.list',
-        'Grid Config: Vandelay Match Sets',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.cat.vandelay.match_set.quality', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.cat.vandelay.match_set.quality',
-        'Grid Config: Vandelay Match Quality Metrics',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.cat.vandelay.queue.items', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.cat.vandelay.queue.items',
-        'Grid Config: Vandelay Queue Import Items',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.cat.vandelay.queue.list.bib', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.cat.vandelay.queue.list.bib',
-        'Grid Config: Vandelay Bib Queue List',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.cat.vandelay.queue.bib.items', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.cat.vandelay.queue.bib.items',
-        'Grid Config: Vandelay Bib Items',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.cat.vandelay.queue.list.auth', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.cat.vandelay.queue.list.auth',
-        'Grid Config: Vandelay Authority Queue List',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.admin.vandelay.merge_profile', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.admin.vandelay.merge_profile',
-        'Grid Config: Vandelay Merge Profiles',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.admin.vandelay.bib_attr_definition', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.admin.vandelay.bib_attr_definition',
-        'Grid Config: Vandelay Bib Record Attributes',
-        'cwst', 'label'
-    )
-), (
-    'eg.grid.admin.vandelay.import_item_attr_definition', 'gui', 'object',
-    oils_i18n_gettext(
-        'eg.grid.admin.vandelay.import_item_attr_definition',
-        'Grid Config: Vandelay Import Item Attributes',
-        'cwst', 'label'
-    )
-);
-
-
-COMMIT;
-
-
diff --git a/Open-ILS/src/sql/Pg/upgrade/YYYY.data.vandelay-template-settings.sql b/Open-ILS/src/sql/Pg/upgrade/YYYY.data.vandelay-template-settings.sql
deleted file mode 100644 (file)
index bd104ef..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('YYYY', :eg_version);
-
-INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
-VALUES (
-    'eg.cat.vandelay.import.templates', 'cat', 'object',
-    oils_i18n_gettext(
-        'eg.cat.vandelay.import.templates',
-        'Vandelay Import Form Templates',
-        'cwst', 'label'
-    )
-);
-
-COMMIT;