summaryrefslogtreecommitdiff
path: root/src/backenddb
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-04-10 11:18:56 +0200
committerChristian Grothoff <christian@grothoff.org>2023-04-10 11:18:56 +0200
commit208dbea1ce964495dbd4ee1b572694a43d8cdb6b (patch)
treeda6ac58120683516da053905224d00ec620dc42f /src/backenddb
parent31babe5cf8e1259b719461fa318db9ae0778ec1a (diff)
downloadmerchant-208dbea1ce964495dbd4ee1b572694a43d8cdb6b.tar.gz
merchant-208dbea1ce964495dbd4ee1b572694a43d8cdb6b.tar.bz2
merchant-208dbea1ce964495dbd4ee1b572694a43d8cdb6b.zip
add implementation of AML status report (#7684)
Diffstat (limited to 'src/backenddb')
-rw-r--r--src/backenddb/Makefile.am3
-rw-r--r--src/backenddb/merchant-0005.sql32
2 files changed, 35 insertions, 0 deletions
diff --git a/src/backenddb/Makefile.am b/src/backenddb/Makefile.am
index c1080024..d233b95b 100644
--- a/src/backenddb/Makefile.am
+++ b/src/backenddb/Makefile.am
@@ -18,6 +18,9 @@ sql_DATA = \
merchant-0004.sql \
drop.sql
+# merchant-0005.sql \ -- FIXME-#7796
+
+
if HAVE_POSTGRESQL
if HAVE_GNUNETPQ
plugin_LTLIBRARIES = \
diff --git a/src/backenddb/merchant-0005.sql b/src/backenddb/merchant-0005.sql
new file mode 100644
index 00000000..8006e565
--- /dev/null
+++ b/src/backenddb/merchant-0005.sql
@@ -0,0 +1,32 @@
+--
+-- This file is part of TALER
+-- Copyright (C) 2023 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/>
+--
+
+-- Everything in one big transaction
+BEGIN;
+
+-- Check patch versioning is in place.
+SELECT _v.register_patch('merchant-0005', NULL, NULL);
+
+SET search_path TO merchant;
+
+ALTER TABLE merchant_instances
+ ADD COLUMN user_type INT;
+
+COMMENT ON COLUMN merchant_instances.user_type
+ IS 'what type of user is this (individual or business)';
+
+-- Complete transaction
+COMMIT;