]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0247.data.org-setting-cat.bib.delete_on_no_copy_via_acq_lineitem_cancel.sql
Add default Vandelay match set to schema
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0247.data.org-setting-cat.bib.delete_on_no_copy_via_acq_lineitem_cancel.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0247'); -- phasefx
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
6         'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
7         oils_i18n_gettext(
8             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
9             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
10             'coust', 
11             'label'),
12         oils_i18n_gettext(
13             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
14             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
15             'coust', 
16             'description'),
17         'bool'
18 );
19
20 COMMIT;