summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2017-10-16 16:47:14 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2017-10-16 16:47:14 +0200
commit88cdaf70c95dc631e55194830c7a7c778d6070e1 (patch)
treead68c71051af66424b82752f927097eb4744b1ec
parentd970d6abb4e3d7bd69e2170523a2aafef5fd5a4a (diff)
downloadexchange-88cdaf70c95dc631e55194830c7a7c778d6070e1.tar.gz
exchange-88cdaf70c95dc631e55194830c7a7c778d6070e1.tar.bz2
exchange-88cdaf70c95dc631e55194830c7a7c778d6070e1.zip
adding missing table in the drop method
-rw-r--r--src/auditordb/plugin_auditordb_postgres.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/auditordb/plugin_auditordb_postgres.c b/src/auditordb/plugin_auditordb_postgres.c
index 7c6db86de..ba7507546 100644
--- a/src/auditordb/plugin_auditordb_postgres.c
+++ b/src/auditordb/plugin_auditordb_postgres.c
@@ -148,6 +148,7 @@ postgres_drop_tables (void *cls)
GNUNET_PQ_make_execute ("DROP TABLE IF EXISTS auditor_wire_fee_balance;"),
GNUNET_PQ_make_execute ("DROP TABLE IF EXISTS auditor_reserves;"),
GNUNET_PQ_make_execute ("DROP TABLE IF EXISTS auditor_progress;"),
+ GNUNET_PQ_make_execute ("DROP TABLE IF EXISTS wire_auditor_progress;"),
GNUNET_PQ_EXECUTE_STATEMENT_END
};
PGconn *conn;