exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit c334ba61f4b371755cc3e4e5afd22fc4054c0836
parent fb2ef1d5d90cb83f49d4a2756fe39359449fb823
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri,  6 May 2016 13:38:20 +0200

drop refunds table as well

Diffstat:
Msrc/exchangedb/plugin_exchangedb_postgres.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c @@ -156,6 +156,8 @@ postgres_drop_tables (void *cls, SQLEXEC_ (session->conn, "DROP TABLE IF EXISTS refresh_commit_link;"); SQLEXEC_ (session->conn, + "DROP TABLE IF EXISTS refunds;"); + SQLEXEC_ (session->conn, "DROP TABLE IF EXISTS refresh_order;"); SQLEXEC_ (session->conn, "DROP TABLE IF EXISTS refresh_melts;");