diff PostgreSQL/Plugins/SQL/Upgrades/V6.1ToV6.2.sql @ 456:0ac99983abfa pg-transactions

missing drop function
author Alain Mazy <am@osimis.io>
date Tue, 23 Jan 2024 16:50:55 +0100
parents f2427f94d879
children 9da7c688e7dc
line wrap: on
line diff
--- a/PostgreSQL/Plugins/SQL/Upgrades/V6.1ToV6.2.sql	Mon Jan 22 09:58:53 2024 +0100
+++ b/PostgreSQL/Plugins/SQL/Upgrades/V6.1ToV6.2.sql	Tue Jan 23 16:50:55 2024 +0100
@@ -44,3 +44,5 @@
 -- These triggers disappears and are not replaced in V6.2
 DROP TRIGGER IF EXISTS CountResourcesTracker ON Resources;
 
+-- The signature has changed so we must delete the function before replacing it.
+DROP FUNCTION CreateInstance;