From: Chris Sharp Date: Mon, 2 Nov 2020 19:18:46 +0000 (-0500) Subject: SQL: drop the table after moving the data off X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=55aab068e0fd7eef37d16fddb04ad65ffe88a1cb;p=evergreen%2Fpines.git SQL: drop the table after moving the data off --- diff --git a/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-3.6-upgrade.sql b/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-3.6-upgrade.sql index 752c63cafd..ce06be5c35 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-3.6-upgrade.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-3.6-upgrade.sql @@ -9,5 +9,6 @@ create table actor.workstation_setting_temp (like actor.workstation_setting); insert into actor.workstation_setting_temp select * from actor.workstation_setting; truncate actor.workstation_setting; insert into actor.workstation_setting (select distinct on (workstation, name) id, workstation, name, value from actor.workstation_setting_temp); +drop table actor.workstation_setting_temp; commit;