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 ('0762', :eg_version); -- miker/gmcharlt
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0763', :eg_version); -- jeff/miker
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
'integer'
);
+INSERT INTO config.org_unit_setting_type (
+ name, label, grp, datatype
+) VALUES (
+ 'circ.fines.truncate_to_max_fine',
+ oils_i18n_gettext(
+ 'circ.fines.truncate_to_max_fine',
+ 'Truncate fines to max fine amount',
+ 'coust',
+ 'label'
+ ),
+ 'circ',
+ 'bool'
+);
+
+
INSERT INTO config.settings_group (name, label)
VALUES (
'url_verify',
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('0763', :eg_version);
+
+INSERT INTO config.org_unit_setting_type (
+ name, label, grp, datatype
+) VALUES (
+ 'circ.fines.truncate_to_max_fine',
+ 'Truncate fines to max fine amount',
+ 'circ',
+ 'bool'
+);
+
+COMMIT;
+
+++ /dev/null
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
-
-INSERT INTO config.org_unit_setting_type (
- name, label, grp, datatype
-) VALUES (
- 'circ.fines.truncate_to_max_fine',
- 'Truncate fines to max fine amount',
- 'circ',
- 'bool'
-);
-
-COMMIT;
-