merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 4e61ed47b8464b65b1d64c68af4e4c927a552823
parent b01dd2f2f521b10fe0778ebcc4974f86a995ee60
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Thu,  2 Nov 2017 14:37:00 +0100

add new tables to drop method

Diffstat:
Msrc/backenddb/plugin_merchantdb_postgres.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c @@ -72,6 +72,10 @@ postgres_drop_tables (void *cls) GNUNET_PQ_make_try_execute ("DROP TABLE IF EXISTS merchant_contract_terms CASCADE;"), GNUNET_PQ_make_try_execute ("DROP TABLE IF EXISTS merchant_refunds CASCADE;"), GNUNET_PQ_make_try_execute ("DROP TABLE IF EXISTS exchange_wire_fees CASCADE;"), + GNUNET_PQ_make_try_execute ("DROP TABLE IF EXISTS merchant_tips CASCADE;"), + GNUNET_PQ_make_try_execute ("DROP TABLE IF EXISTS merchant_tip_pickups CASCADE;"), + GNUNET_PQ_make_try_execute ("DROP TABLE IF EXISTS merchant_tip_reserve_credits CASCADE;"), + GNUNET_PQ_make_try_execute ("DROP TABLE IF EXISTS merchant_tip_reserves CASCADE;"), GNUNET_PQ_EXECUTE_STATEMENT_END };