commit df346488f2d6a1a4fb22fe1428f3354771dc47bb
parent 661c1df15b4c86d80beb34a6089c2eb3e74b14a7
Author: MS <ms@taler.net>
Date: Tue, 24 Oct 2023 12:26:14 +0200
comment
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/database-versioning/libeufin-nexus-0001.sql b/database-versioning/libeufin-nexus-0001.sql
@@ -56,7 +56,7 @@ CREATE TABLE IF NOT EXISTS initiated_outgoing_transactions
,outgoing_transaction_id INT8 REFERENCES outgoing_transactions (outgoing_transaction_id)
,submitted BOOL DEFAULT FALSE
,hidden BOOL DEFAULT FALSE -- FIXME: explain this.
- ,client_request_uuid TEXT UNIQUE
+ ,client_request_uuid TEXT UNIQUE -- only there for HTTP requests idempotence.
,failure_message TEXT -- NOTE: that may mix soon failures (those found at initiation time), or late failures (those found out along a fetch operation)
);