]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1172.data.local-admin-settings.sql
LP#1837059: stamp DB update
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1172.data.local-admin-settings.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('1172', :eg_version);
4
5 INSERT INTO config.workstation_setting_type (name, grp, datatype, label) 
6 VALUES (
7     'eg.grid.admin.local.config.hold_matrix_matchpoint', 'gui', 'object',
8     oils_i18n_gettext(
9         'eg.grid.admin.local.config.hold_matrix_matchpoint',
10         'Grid Config: admin.local.config.hold_matrix_matchpoint',
11         'cwst', 'label'
12     )
13 ), (
14     'eg.grid.admin.local.actor.address_alert', 'gui', 'object',
15     oils_i18n_gettext(
16         'eg.grid.admin.local.actor.address_alert',
17         'Grid Config: admin.local.actor.address_alert',
18         'cwst', 'label'
19     )
20 ), (
21     'eg.grid.admin.local.config.barcode_completion', 'gui', 'object',
22     oils_i18n_gettext(
23         'eg.grid.admin.local.config.barcode_completion',
24         'Grid Config: admin.local.config.barcode_completion',
25         'cwst', 'label'
26     )
27 ), (
28     'eg.grid.admin.local.actor.copy_alert_suppress', 'gui', 'object',
29     oils_i18n_gettext(
30         'eg.grid.admin.local.actor.copy_alert_suppress',
31         'Grid Config: admin.local.actor.copy_alert_suppress',
32         'cwst', 'label'
33     )
34 ), (
35     'eg.grid.admin.local.asset.copy_location', 'gui', 'object',
36     oils_i18n_gettext(
37         'eg.grid.admin.local.asset.copy_location',
38         'Grid Config: admin.local.asset.copy_location',
39         'cwst', 'label'
40     )
41 ), (
42     'eg.grid.admin.local.asset.copy_tag', 'gui', 'object',
43     oils_i18n_gettext(
44         'eg.grid.admin.local.asset.copy_tag',
45         'Grid Config: admin.local.asset.copy_tag',
46         'cwst', 'label'
47     )
48 ), (
49     'eg.grid.admin.local.permission.grp_penalty_threshold', 'gui', 'object',
50     oils_i18n_gettext(
51         'eg.grid.admin.local.permission.grp_penalty_threshold',
52         'Grid Config: admin.local.permission.grp_penalty_threshold',
53         'cwst', 'label'
54     )
55 ), (
56     'eg.grid.admin.local.config.non_cataloged_type', 'gui', 'object',
57     oils_i18n_gettext(
58         'eg.grid.admin.local.config.non_cataloged_type',
59         'Grid Config: admin.local.config.non_cataloged_type',
60         'cwst', 'label'
61     )
62 );
63
64 -- eg.grid.admin.local.rating.badge already exists
65
66 COMMIT;
67