]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0020.data.org-setting-obscure-dob.sql
Add default Vandelay match set to schema
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0020.data.org-setting-obscure-dob.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0020');
4
5 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
6     'circ.obscure_dob',
7     'Obscure the Date of Birth field',
8     'When true, the Date of Birth column in patron lists will default to Not Visible, and in the Patron Summary sidebar the value will display as <Hidden> unless the field label is clicked.',
9     'bool'
10 );
11
12 COMMIT;
13