Bug 9303 [QA Followup] - Restore missing svc script
[koha.git] / installer / data / mysql / atomicupdate / bug_9303.sql
1 ALTER TABLE borrowers ADD privacy_guarantor_checkouts BOOLEAN NOT NULL DEFAULT '0' AFTER privacy;
2
3 ALTER TABLE deletedborrowers ADD privacy_guarantor_checkouts BOOLEAN NOT NULL DEFAULT '0' AFTER privacy;
4
5 INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type )
6 VALUES (
7     'AllowStaffToSetCheckoutsVisibilityForGuarantor',  '0', NULL,
8     'If enabled, library staff can set a patron''s checkouts to be visible to linked patrons from the opac.',  'YesNo'
9 ), (
10     'AllowPatronToSetCheckoutsVisibilityForGuarantor',  '0', NULL,
11     'If enabled, the patron can set checkouts to be visible to  his or her guarantor',  'YesNo'
12 );