commit 7f7d8596abceedac781d758b657167527feb0ae7
parent 62afe341b7c6d4c33faea3d913b8322738258e8a
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 16 Apr 2017 17:25:53 +0200
add missing table drop instruction
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -260,6 +260,8 @@ postgres_drop_tables (void *cls)
"DROP TABLE IF EXISTS reserves CASCADE;");
SQLEXEC_ (conn,
"DROP TABLE IF EXISTS denominations CASCADE;");
+ SQLEXEC_ (conn,
+ "DROP TABLE IF EXISTS denomination_revocations CASCADE;");
PQfinish (conn);
return GNUNET_OK;
SQLEXEC_fail: