]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.data.vandelay-grid-settings.sql
LP1779158 Vandelay workstation setting repairs/additions
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.data.vandelay-grid-settings.sql
1 BEGIN;
2
3 --SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
4
5 INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
6 VALUES (
7     'eg.grid.cat.vandelay.queue.bib', 'gui', 'object',
8     oils_i18n_gettext(
9         'eg.grid.cat.vandelay.queue.bib',
10         'Grid Config: Vandelay Bib Queue',
11         'cwst', 'label'
12     )
13 ), (
14     'eg.grid.cat.vandelay.queue.authority', 'gui', 'object',
15     oils_i18n_gettext(
16         'eg.grid.cat.vandelay.queue.authority',
17         'Grid Config: Vandelay Authority Queue',
18         'cwst', 'label'
19     )
20 ), (
21     'eg.grid.cat.vandelay.match_set.list', 'gui', 'object',
22     oils_i18n_gettext(
23         'eg.grid.cat.vandelay.match_set.list',
24         'Grid Config: Vandelay Match Sets',
25         'cwst', 'label'
26     )
27 ), (
28     'eg.grid.cat.vandelay.match_set.quality', 'gui', 'object',
29     oils_i18n_gettext(
30         'eg.grid.cat.vandelay.match_set.quality',
31         'Grid Config: Vandelay Match Quality Metrics',
32         'cwst', 'label'
33     )
34 ), (
35     'eg.grid.cat.vandelay.queue.items', 'gui', 'object',
36     oils_i18n_gettext(
37         'eg.grid.cat.vandelay.queue.items',
38         'Grid Config: Vandelay Queue Import Items',
39         'cwst', 'label'
40     )
41 ), (
42     'eg.grid.cat.vandelay.queue.list.bib', 'gui', 'object',
43     oils_i18n_gettext(
44         'eg.grid.cat.vandelay.queue.list.bib',
45         'Grid Config: Vandelay Bib Queue List',
46         'cwst', 'label'
47     )
48 ), (
49     'eg.grid.cat.vandelay.queue.bib.items', 'gui', 'object',
50     oils_i18n_gettext(
51         'eg.grid.cat.vandelay.queue.bib.items',
52         'Grid Config: Vandelay Bib Items',
53         'cwst', 'label'
54     )
55 ), (
56     'eg.grid.cat.vandelay.queue.list.auth', 'gui', 'object',
57     oils_i18n_gettext(
58         'eg.grid.cat.vandelay.queue.list.auth',
59         'Grid Config: Vandelay Authority Queue List',
60         'cwst', 'label'
61     )
62 ), (
63     'eg.grid.admin.vandelay.merge_profile', 'gui', 'object',
64     oils_i18n_gettext(
65         'eg.grid.admin.vandelay.merge_profile',
66         'Grid Config: Vandelay Merge Profiles',
67         'cwst', 'label'
68     )
69 ), (
70     'eg.grid.admin.vandelay.bib_attr_definition', 'gui', 'object',
71     oils_i18n_gettext(
72         'eg.grid.admin.vandelay.bib_attr_definition',
73         'Grid Config: Vandelay Bib Record Attributes',
74         'cwst', 'label'
75     )
76 ), (
77     'eg.grid.admin.vandelay.import_item_attr_definition', 'gui', 'object',
78     oils_i18n_gettext(
79         'eg.grid.admin.vandelay.import_item_attr_definition',
80         'Grid Config: Vandelay Import Item Attributes',
81         'cwst', 'label'
82     )
83 );
84
85
86 COMMIT;
87
88