install_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
);
-INSERT INTO config.upgrade_log (version) VALUES ('0041'); -- miker
+INSERT INTO config.upgrade_log (version) VALUES ('0042'); -- berick
CREATE TABLE config.bib_source (
config.index_normalizer i
WHERE i.func IN ('naco_normalize','split_date_range');
+-- claims returned mark item missing
+INSERT INTO
+ config.org_unit_setting_type ( name, label, description, datatype )
+ VALUES (
+ 'circ.claim_return.mark_missing',
+ 'Claim Return: Mark copy as missing',
+ 'When a circ is marked as claims-returned, also mark the copy as missing',
+ 'bool'
+ );
--- /dev/null
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0042');
+
+INSERT INTO
+ config.org_unit_setting_type ( name, label, description, datatype )
+ VALUES (
+ 'circ.claim_return.mark_missing',
+ 'Claim Return: Mark copy as missing',
+ 'When a circ is marked as claims-returned, also mark the copy as missing',
+ 'bool'
+ );
+
+
+COMMIT;