From: Joseph Lewis <joehms22@gmail.com> Date: Mon, 6 Jun 2011 21:59:37 +0000 (-0600) Subject: Forgot to put in the logging information :) X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6842714bf0226c85c71bf79d7d0c6166363f1153;p=evergreen%2Fmasslnc.git Forgot to put in the logging information :) Signed-off-by: Joseph Lewis <joehms22@gmail.com> Signed-off-by: Thomas Berezansky <tsbere@mvlc.org> Signed-off-by: Jason Etheridge <jason@esilibrary.com> --- diff --git a/Open-ILS/src/sql/Pg/upgrade/0549.data.seed_values_admin_cleanup.sql b/Open-ILS/src/sql/Pg/upgrade/0549.data.seed_values_admin_cleanup.sql index 20cbfcd414..b21a28eb81 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0549.data.seed_values_admin_cleanup.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0549.data.seed_values_admin_cleanup.sql @@ -1,3 +1,7 @@ +BEGIN; + +INSERT INTO config.upgrade_log (version) VALUES ('0536'); --dbs + -- config settings group INSERT INTO config.settings_group (name, label) VALUES ('sys', 'System'), @@ -210,3 +214,5 @@ UPDATE config.org_unit_setting_type SET grp = 'self' WHERE name = 'circ.selfchec UPDATE config.org_unit_setting_type SET grp = 'self' WHERE name = 'circ.selfcheck.require_patron_password'; UPDATE config.org_unit_setting_type SET grp = 'self' WHERE name = 'circ.selfcheck.workstation_required'; UPDATE config.org_unit_setting_type SET grp = 'serial' WHERE name = 'serial.prev_issuance_copy_location'; + +COMMIT;