[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-merchant] branch master updated: -add missing file
From: |
gnunet |
Subject: |
[taler-merchant] branch master updated: -add missing file |
Date: |
Sun, 08 Sep 2024 08:18:50 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository merchant.
The following commit(s) were added to refs/heads/master by this push:
new bc44dc29 -add missing file
bc44dc29 is described below
commit bc44dc29c3ebc2ea7363187dd65f9032ac324c28
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Sep 8 08:18:47 2024 +0200
-add missing file
---
src/backenddb/merchant-0011.sql | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/src/backenddb/merchant-0011.sql b/src/backenddb/merchant-0011.sql
new file mode 100644
index 00000000..63119c1c
--- /dev/null
+++ b/src/backenddb/merchant-0011.sql
@@ -0,0 +1,39 @@
+--
+-- This file is part of TALER
+-- 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
+-- Foundation; either version 3, or (at your option) any later version.
+--
+-- TALER is distributed in the hope that it will be useful, but WITHOUT ANY
+-- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR
+-- A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+--
+-- You should have received a copy of the GNU General Public License along with
+-- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+--
+
+-- @file merchant-0011.sql
+-- @brief Remove dead deposit_thresholds and related columns and replace with
more generic JSON column
+-- @author Christian Grothoff
+
+-- Everything in one big transaction
+BEGIN;
+
+-- Check patch versioning is in place.
+SELECT _v.register_patch('merchant-0011', NULL, NULL);
+
+SET search_path TO merchant;
+
+ALTER TABLE merchant_kyc
+ DROP COLUMN deposit_thresholds
+ ,DROP COLUMN deposit_timeframes
+ ,DROP COLUMN deposit_limits_are_soft
+ ,DROP COLUMN exchange_kyc_serial
+ ,ADD COLUMN jaccount_limits TEXT DEFAULT NULL;
+
+COMMENT ON COLUMN merchant_kyc.jaccount_limits
+ IS 'JSON with AccountLimits that apply to this account';
+
+COMMIT;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-merchant] branch master updated: -add missing file,
gnunet <=