exchange

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

commit 5d58316d884e660ff9a83a6e7a4bd34ae4c8e734
parent 3a889eb7e5eb749450e3e0c6cabf5154860cf7a4
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 28 May 2017 18:06:44 +0200

add missing drop, should fix #5007

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 @@ -294,6 +294,8 @@ postgres_drop_tables (void *cls) SQLEXEC_ (conn, "DROP TABLE IF EXISTS known_coins CASCADE;"); SQLEXEC_ (conn, + "DROP TABLE IF EXISTS reserves_close CASCADE;"); + SQLEXEC_ (conn, "DROP TABLE IF EXISTS reserves_out CASCADE;"); SQLEXEC_ (conn, "DROP TABLE IF EXISTS reserves_in CASCADE;");