changeset 456:0ac99983abfa pg-transactions

missing drop function
author Alain Mazy <am@osimis.io>
date Tue, 23 Jan 2024 16:50:55 +0100
parents 0a8b34e3a337
children 2f3b0688548e
files PostgreSQL/Plugins/SQL/Upgrades/V6.1ToV6.2.sql
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
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;