commit a9514bda3c0d5de7390fd01ca0eaecc91d5af9c1
parent 561f1ede9664df957f7849ad2d71063aaf1c1b08
Author: Casaburi Johannes <johannes.casaburi@students.bfh.ch>
Date: Thu, 4 Apr 2024 14:25:31 +0200
fix db drop
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/donaudb/drop.sql b/src/donaudb/drop.sql
@@ -1,6 +1,6 @@
--
-- This file is part of TALER
--- Copyright (C) 2014--2022 Taler Systems SA
+-- Copyright (C) 2024 Taler Systems SA
--
-- TALER is free software; you can redistribute it and/or modify it under the
-- terms of the GNU General Public License as published by the Free Software
@@ -20,7 +20,7 @@ BEGIN;
WITH xpatches AS (
SELECT patch_name
FROM _v.patches
- WHERE starts_with(patch_name,'exchange-')
+ WHERE starts_with(patch_name,'donau-')
)
SELECT _v.unregister_patch(xpatches.patch_name)
FROM xpatches;