summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-04-16 17:25:53 +0200
committerChristian Grothoff <christian@grothoff.org>2017-04-16 17:25:53 +0200
commit7f7d8596abceedac781d758b657167527feb0ae7 (patch)
tree787c121295d2d2636e52a3a0ae9d10f7e6845139
parent62afe341b7c6d4c33faea3d913b8322738258e8a (diff)
downloadexchange-7f7d8596abceedac781d758b657167527feb0ae7.tar.gz
exchange-7f7d8596abceedac781d758b657167527feb0ae7.tar.bz2
exchange-7f7d8596abceedac781d758b657167527feb0ae7.zip
add missing table drop instruction
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
index 916c502c7..b26ea792e 100644
--- 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: