Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
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 ('1355', :eg_version); -- berick/smorrison/gmcharlt
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1356', :eg_version); -- gmonti/scottangel/mllewell/gmcharlt
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1356', :eg_version);
+
+UPDATE config.global_flag
+SET label = 'Age billings and payments when circulations are aged.'
+WHERE name = 'history.money.age_with_circs'
+ AND label = 'Age billings and payments when cirulcations are aged.';
+
+COMMIT;
+++ /dev/null
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version);
-
-UPDATE config.global_flag
-SET label = 'Age billings and payments when circulations are aged.'
-WHERE name = 'history.money.age_with_circs'
- AND label = 'Age billings and payments when cirulcations are aged.';
-
-COMMIT;