From 2bb3c0ff0eab16f27df0d4aecd1ac5a1ff29b284 Mon Sep 17 00:00:00 2001 From: miker Date: Mon, 28 Jun 2010 15:25:07 +0000 Subject: [PATCH] thinko when trying to preserve any user change to the internal_flag version of the ingest.disable_authority_linking enabled setting git-svn-id: svn://svn.open-ils.org/ILS/trunk@16820 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../sql/Pg/upgrade/0319.schema.authority-update-propogation.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/sql/Pg/upgrade/0319.schema.authority-update-propogation.sql b/Open-ILS/src/sql/Pg/upgrade/0319.schema.authority-update-propogation.sql index 735f870567..bf82199320 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0319.schema.authority-update-propogation.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0319.schema.authority-update-propogation.sql @@ -13,7 +13,7 @@ INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE 'label' ) ); -UPDATE config.global_flag SET enabled = (SELECT enabled FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking'); +UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking'); DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking'; INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE -- 2.43.2