Fix auditordb.

Include (forgotten) table within the "drop_tables()" command.
This commit is contained in:
Marcello Stanisci 2019-12-22 12:43:33 +01:00
parent 672a76e9e3
commit d36700ed98
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F
2 changed files with 4 additions and 2 deletions

View File

@ -125,6 +125,8 @@ postgres_drop_tables (void *cls,
"DROP TABLE IF EXISTS wire_auditor_account_progress;"),
GNUNET_PQ_make_execute (
"DROP TABLE IF EXISTS auditor_historic_reserve_summary CASCADE;"),
GNUNET_PQ_make_execute (
"DROP TABLE IF EXISTS auditor_denominations CASCADE;"),
GNUNET_PQ_EXECUTE_STATEMENT_END
};
struct GNUNET_PQ_ExecuteStatement esx[] = {

View File

@ -467,10 +467,10 @@ handle_admin_add_incoming (struct TALER_FAKEBANK_Handle *h,
void *json_str;
size_t json_len;
json = json_pack ("{s:I, s:s}",
json = json_pack ("{s:I, s:o}",
"row_id",
(json_int_t) row_id,
"timestamp", "/Date(0)/"); /*dummy tmp */
"timestamp", GNUNET_JSON_from_time_abs (GNUNET_TIME_UNIT_ZERO_ABS)); /*dummy tmp */
json_str = json_dumps (json,
JSON_INDENT (2));