gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: fix SQL error


From: gnunet
Subject: [taler-exchange] branch master updated: fix SQL error
Date: Wed, 02 Dec 2020 15:58:16 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new b92e85f9 fix SQL error
b92e85f9 is described below

commit b92e85f9ccdcc8f747ae5ca0dcf6c5ef60a59069
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Dec 2 15:58:13 2020 +0100

    fix SQL error
---
 src/exchangedb/exchange-0002.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/exchangedb/exchange-0002.sql b/src/exchangedb/exchange-0002.sql
index f90097da..146e0a7b 100644
--- a/src/exchangedb/exchange-0002.sql
+++ b/src/exchangedb/exchange-0002.sql
@@ -97,7 +97,7 @@ COMMENT ON COLUMN auditors.last_change
 CREATE TABLE IF NOT EXISTS auditor_denom_sigs
   (auditor_pub BYTEA NOT NULL REFERENCES auditors (auditor_pub) ON DELETE 
CASCADE
   ,denom_pub_hash BYTEA NOT NULL REFERENCES denominations (denom_pub_hash) ON 
DELETE CASCADE
-  ,auditor_sig BYTEA PRIMARY KEY CHECK (LENGTH(auditor_sig)=64)
+  ,auditor_sig BYTEA CHECK (LENGTH(auditor_sig)=64)
   ,PRIMARY KEY (denom_pub_hash, auditor_pub)
   );
 COMMENT ON TABLE auditor_denom_sigs

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]