From 7f7d8596abceedac781d758b657167527feb0ae7 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 16 Apr 2017 17:25:53 +0200 Subject: add missing table drop instruction --- src/exchangedb/plugin_exchangedb_postgres.c | 2 ++ 1 file changed, 2 insertions(+) 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: -- cgit v1.2.3