diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-07-30 23:31:02 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-07-30 23:31:02 +0200 |
commit | 01fa3466e15d70cbd1e4719843ae39eff07eb229 (patch) | |
tree | 77f02e07d1eda741cd593fe1af597769b8ef1eac /src/backenddb/merchant-0010.sql | |
parent | 195971f7dac9820a8fdd68ec574d1a99d6f7343b (diff) |
fix FTBFS when compiling against exchange v0.13 API
Diffstat (limited to 'src/backenddb/merchant-0010.sql')
-rw-r--r-- | src/backenddb/merchant-0010.sql | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/backenddb/merchant-0010.sql b/src/backenddb/merchant-0010.sql new file mode 100644 index 00000000..e7ac0dc3 --- /dev/null +++ b/src/backenddb/merchant-0010.sql @@ -0,0 +1,35 @@ +-- +-- 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-0010.sql +-- @brief Remove dead aml_decision column +-- @author Christian Grothoff + +-- Everything in one big transaction +BEGIN; + +-- Check patch versioning is in place. +SELECT _v.register_patch('merchant-0010', NULL, NULL); + +SET search_path TO merchant; + +ALTER TABLE merchant_kyc + DROP COLUMN aml_decision + ,DROP COLUMN exchange_sig + ,DROP COLUMN exchange_pub; + +-- Complete transaction +COMMIT; |