install_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
);
-INSERT INTO config.upgrade_log (version) VALUES ('0028'); -- phasefx
+INSERT INTO config.upgrade_log (version) VALUES ('0029'); -- berick
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
'A hold is cancelled by the patron'
);
-
+-- hold targeter skip me
+INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
+ 'circ.holds.target_skip_me',
+ 'Skip For Hold Targeting',
+ 'When true, don''t target any copies at this org unit for holds',
+ 'bool'
+);
--- /dev/null
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0029');
+
+INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
+ 'circ.holds.target_skip_me',
+ 'Skip For Hold Targeting',
+ 'When true, don''t target any copies at this org unit for holds',
+ 'bool'
+);
+
+COMMIT;
+