BEFORE INSERT OR UPDATE ON config.db_patch_dependencies
FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1283', :eg_version); -- rhamby/ehardy/jboyer
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1284', :eg_version); -- blake / terranm / jboyer
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1284', :eg_version); -- blake / terranm / jboyer
+
+INSERT INTO config.org_unit_setting_type
+( name, grp, label, description, datatype, fm_class ) VALUES
+( 'circ.void_item_deposit', 'circ',
+ oils_i18n_gettext('circ.void_item_deposit',
+ 'Void item deposit fee on checkin',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.void_item_deposit',
+ 'If a deposit was charged when checking out an item, void it when the item is returned',
+ 'coust', 'description'),
+ 'bool', null);
+
+COMMIT;
+
+++ /dev/null
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version); -- blake / jboyer
-
-INSERT INTO config.org_unit_setting_type
-( name, grp, label, description, datatype, fm_class ) VALUES
-( 'circ.void_item_deposit', 'circ',
- oils_i18n_gettext('circ.void_item_deposit',
- 'Void item deposit fee on checkin',
- 'coust', 'label'),
- oils_i18n_gettext('circ.void_item_deposit',
- 'If a deposit was charged when checking out an item, void it when the item is returned',
- 'coust', 'description'),
- 'bool', null);
-
-COMMIT;
-