]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0529.data.merge_user-ou_settings.sql
LP1779158 Angular7 and ng-lint updates
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0529.data.merge_user-ou_settings.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0529');
4
5 INSERT INTO config.org_unit_setting_type 
6 ( name, label, description, datatype ) VALUES 
7 ( 'circ.user_merge.delete_addresses', 
8   'Circ:  Patron Merge Address Delete', 
9   'Delete address(es) of subordinate user(s) in a patron merge', 
10    'bool'
11 );
12
13 INSERT INTO config.org_unit_setting_type 
14 ( name, label, description, datatype ) VALUES 
15 ( 'circ.user_merge.delete_cards', 
16   'Circ: Patron Merge Barcode Delete', 
17   'Delete barcode(s) of subordinate user(s) in a patron merge', 
18   'bool'
19 );
20
21 INSERT INTO config.org_unit_setting_type 
22 ( name, label, description, datatype ) VALUES 
23 ( 'circ.user_merge.deactivate_cards', 
24   'Circ:  Patron Merge Deactivate Card', 
25   'Mark barcode(s) of subordinate user(s) in a patron merge as inactive', 
26   'bool'
27 );\r
28
29 COMMIT;