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 ('1135', :eg_version); -- rhamby/cesardv/bshum
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1136', :eg_version); -- csharp/bshum
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
+++ /dev/null
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
-
--- update mods33 data entered by 1100 with a format of 'mods32'
--- harmless if you have not run 1100 yet
-UPDATE config.metabib_field SET format = 'mods33' WHERE format = 'mods32' and id in (38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50);
-
--- change the default format to 'mods33'
-ALTER TABLE config.metabib_field ALTER COLUMN format SET DEFAULT 'mods33'::text;
-
-COMMIT;
-