]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.data.carousel_ws_settings.sql
LP1920253 Add missing carousel workstation setting types
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.data.carousel_ws_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.admin.local.container.carousel_org_unit', 'gui', 'object',
8     oils_i18n_gettext(
9         'eg.grid.admin.local.container.carousel_org_unit',
10         'Grid Config: eg.grid.admin.local.container.carousel_org_unit',
11         'cwst', 'label'
12     )
13 ), (
14     'eg.grid.admin.container.carousel', 'gui', 'object',
15     oils_i18n_gettext(
16         'eg.grid.admin.container.carousel',
17         'Grid Config: eg.grid.admin.container.carousel',
18         'cwst', 'label'
19     )
20 ), (
21     'eg.grid.admin.server.config.carousel_type', 'gui', 'object',
22     oils_i18n_gettext(
23         'eg.grid.admin.server.config.carousel_type',
24         'Grid Config: eg.grid.admin.server.config.carousel_type',
25         'cwst', 'label'
26     )
27 );
28
29 COMMIT;