diff options
Diffstat (limited to 'src/exchangedb/0007-batch_deposits.sql')
-rw-r--r-- | src/exchangedb/0007-batch_deposits.sql | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/exchangedb/0007-batch_deposits.sql b/src/exchangedb/0007-batch_deposits.sql new file mode 100644 index 000000000..65055f6ad --- /dev/null +++ b/src/exchangedb/0007-batch_deposits.sql @@ -0,0 +1,51 @@ +-- +-- 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 alter_table_batch_deposits7() +RETURNS VOID +LANGUAGE plpgsql +AS $$ +DECLARE + table_name TEXT DEFAULT 'batch_deposits'; +BEGIN + EXECUTE FORMAT ( + 'ALTER TABLE ' || table_name || + ' ADD COLUMN merchant_sig BYTEA CHECK(LENGTH(merchant_sig)=64)' + ' DEFAULT NULL' + ';' + ); + + PERFORM comment_partitioned_column( + 'signature by the merchant over the contract terms' + ,'batch_deposits' + ,'merchant_sig' + ,NULL + ); +END $$; + + +INSERT INTO exchange_tables + (name + ,version + ,action + ,partitioned + ,by_range) + VALUES + ('batch_deposits7' + ,'exchange-0007' + ,'alter' + ,TRUE + ,FALSE); |