]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1226.data.angular-providers.sql
LP1915464 follow-up: use spaces, not tabs; remove extra comma
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1226.data.angular-providers.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1226', :eg_version);
4
5 INSERT INTO config.workstation_setting_type
6     (name, grp, datatype, label)
7 VALUES (
8     'eg.grid.acq.provider.addresses', 'gui', 'object',
9     oils_i18n_gettext(
10     'eg.grid.acq.provider.addresses',
11     'Grid Config: acq.provider.addresses',
12     'cwst', 'label')
13 ), (
14     'eg.grid.acq.provider.attributes', 'gui', 'object',
15     oils_i18n_gettext(
16     'eg.grid.acq.provider.attributes',
17     'Grid Config: acq.provider.attributes',
18     'cwst', 'label')
19 ), (
20     'eg.grid.acq.provider.contact.addresses', 'gui', 'object',
21     oils_i18n_gettext(
22     'eg.grid.acq.provider.contact.addresses',
23     'Grid Config: acq.provider.contact.addresses',
24     'cwst', 'label')
25 ), (
26     'eg.grid.acq.provider.contacts', 'gui', 'object',
27     oils_i18n_gettext(
28     'eg.grid.acq.provider.contacts',
29     'Grid Config: acq.provider.contacts',
30     'cwst', 'label')
31 ), (
32     'eg.grid.acq.provider.edi_accounts', 'gui', 'object',
33     oils_i18n_gettext(
34     'eg.grid.acq.provider.edi_accounts',
35     'Grid Config: acq.provider.edi_accounts',
36     'cwst', 'label')
37 ), (
38     'eg.grid.acq.provider.edi_messages', 'gui', 'object',
39     oils_i18n_gettext(
40     'eg.grid.acq.provider.edi_messages',
41     'Grid Config: acq.provider.edi_messages',
42     'cwst', 'label')
43 ), (
44     'eg.grid.acq.provider.holdings', 'gui', 'object',
45     oils_i18n_gettext(
46     'eg.grid.acq.provider.holdings',
47     'Grid Config: acq.provider.holdings',
48     'cwst', 'label')
49 ), (
50     'eg.grid.acq.provider.invoices', 'gui', 'object',
51     oils_i18n_gettext(
52     'eg.grid.acq.provider.invoices',
53     'Grid Config: acq.provider.invoices',
54     'cwst', 'label')
55 ), (
56     'eg.grid.acq.provider.purchaseorders', 'gui', 'object',
57     oils_i18n_gettext(
58     'eg.grid.acq.provider.purchaseorders',
59     'Grid Config: acq.provider.purchaseorders',
60     'cwst', 'label')
61 ), (
62     'eg.grid.acq.provider.search.results', 'gui', 'object',
63     oils_i18n_gettext(
64     'eg.grid.acq.provider.search.results',
65     'Grid Config: acq.provider.search.results',
66     'cwst', 'label')
67 );
68
69 COMMIT;