aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/0005-legitimization_requirements.sql
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-04-22 21:07:40 +0200
committerChristian Grothoff <christian@grothoff.org>2024-07-29 12:18:38 +0200
commit19f98d1575261034b4fa7c634be9be0999a17533 (patch)
treebde825d809e8c669f4d30b523d3237de79510c62 /src/exchangedb/0005-legitimization_requirements.sql
parent4f433353ebcb9d1bd64171e29402ac15c22dfacf (diff)
downloadexchange-19f98d1575261034b4fa7c634be9be0999a17533.tar.xz
DB schema change for DD23
Diffstat (limited to 'src/exchangedb/0005-legitimization_requirements.sql')
-rw-r--r--src/exchangedb/0005-legitimization_requirements.sql45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/exchangedb/0005-legitimization_requirements.sql b/src/exchangedb/0005-legitimization_requirements.sql
new file mode 100644
index 000000000..3d3a238fa
--- /dev/null
+++ b/src/exchangedb/0005-legitimization_requirements.sql
@@ -0,0 +1,45 @@
+--
+-- 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/>
+--
+
+CREATE FUNCTION create_table_legitimization_requirements5(
+ IN partition_suffix TEXT DEFAULT NULL
+)
+RETURNS VOID
+LANGUAGE plpgsql
+AS $$
+BEGIN
+ PERFORM create_partitioned_table(
+ 'DROP TABLE %I;'
+ ,'legitimization_requirements'
+ ,''
+ ,partition_suffix
+ );
+END
+$$;
+
+
+INSERT INTO exchange_tables
+ (name
+ ,version
+ ,action
+ ,partitioned
+ ,by_range)
+ VALUES
+ ('legitimization_requirements5'
+ ,'exchange-0005'
+ ,'create'
+ ,TRUE
+ ,FALSE);