]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1276.data.acq-admin-grid-settings.sql
LP#1831803: (follow-up) update release notes formatting
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1276.data.acq-admin-grid-settings.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1276', :eg_version);
4
5 INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
6 VALUES (
7     'eg.grid.acq.fund.fund_debit', 'gui', 'object',
8     oils_i18n_gettext(
9         'eg.grid.acq.fund.fund_debit',
10         'Grid Config: eg.grid.acq.fund.fund_debit',
11         'cwst', 'label'
12     )
13 ), (
14     'eg.grid.acq.fund.fund_transfer', 'gui', 'object',
15     oils_i18n_gettext(
16         'eg.grid.acq.fund.fund_transfer',
17         'Grid Config: eg.grid.acq.fund.fund_transfer',
18         'cwst', 'label'
19     )
20 ), (
21     'eg.grid.acq.fund.fund_allocation', 'gui', 'object',
22     oils_i18n_gettext(
23         'eg.grid.acq.fund.fund_allocation',
24         'Grid Config: eg.grid.acq.fund.fund_allocation',
25         'cwst', 'label'
26     )
27 ), (
28     'eg.grid.admin.acq.fund', 'gui', 'object',
29     oils_i18n_gettext(
30         'eg.grid.admin.acq.fund',
31         'Grid Config: eg.grid.admin.acq.fund',
32         'cwst', 'label'
33     )
34 ), (
35     'eg.grid.admin.acq.funding_source', 'gui', 'object',
36     oils_i18n_gettext(
37         'eg.grid.admin.acq.funding_source',
38         'Grid Config: eg.grid.admin.acq.funding_source',
39         'cwst', 'label'
40     )
41 ), (
42     'eg.grid.acq.funding_source.fund_allocation', 'gui', 'object',
43     oils_i18n_gettext(
44         'eg.grid.acq.funding_source.fund_allocation',
45         'Grid Config: eg.grid.acq.funding_source.fund_allocation',
46         'cwst', 'label'
47     )
48 ), (
49     'eg.grid.acq.funding_source.credit', 'gui', 'object',
50     oils_i18n_gettext(
51         'eg.grid.acq.funding_source.credit',
52         'Grid Config: eg.grid.acq.funding_source.credit',
53         'cwst', 'label'
54     )
55 );
56
57 COMMIT;