SQL: drop the table after moving the data off
authorChris Sharp <csharp@georgialibraries.org>
Mon, 2 Nov 2020 19:18:46 +0000 (14:18 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Mon, 8 Nov 2021 14:25:45 +0000 (09:25 -0500)
Open-ILS/src/sql/Pg/version-upgrade/pines-pre-3.6-upgrade.sql

index 752c63c..ce06be5 100644 (file)
@@ -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;