commit 3c11c810fb8c20ac583a55e3e22bf0132b553dee
parent 1ffc9e2679e6cfda0e1d104e9b31169d1ea73393
Author: Sebastian <sebasjm@taler-systems.com>
Date: Mon, 9 Mar 2026 14:00:05 -0300
fix: add missing check so dbinit works when function is not there
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backenddb/pg_base32_crockford.sql b/src/backenddb/pg_base32_crockford.sql
@@ -14,7 +14,7 @@
-- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
--
-DROP FUNCTION base32_crockford;
+DROP FUNCTION IF EXISTS base32_crockford;
CREATE FUNCTION base32_crockford(data BYTEA)
RETURNS TEXT
LANGUAGE plpgsql