summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSree Harsha Totakura <sreeharsha@totakura.in>2015-03-13 19:22:30 +0100
committerSree Harsha Totakura <sreeharsha@totakura.in>2015-03-16 11:08:52 +0100
commit7a417e1de07ccc6f8fdbe6519fa0041a5c1dbbb8 (patch)
treebe75c76959b9b27a3595d0deb456f6c90cae55a5
parent8e7f9c2939eaac24d8bd007437eaa45e81835f93 (diff)
downloadexchange-7a417e1de07ccc6f8fdbe6519fa0041a5c1dbbb8.tar.gz
exchange-7a417e1de07ccc6f8fdbe6519fa0041a5c1dbbb8.tar.bz2
exchange-7a417e1de07ccc6f8fdbe6519fa0041a5c1dbbb8.zip
db: update deposits table to support var length RSA denom keys
-rw-r--r--src/mint/mint_db.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mint/mint_db.c b/src/mint/mint_db.c
index 50904df39..22d04c865 100644
--- a/src/mint/mint_db.c
+++ b/src/mint/mint_db.c
@@ -251,12 +251,13 @@ TALER_MINT_DB_create_tables (int temporary)
SQLEXEC("CREATE TABLE IF NOT EXISTS deposits "
"( "
" coin_pub BYTEA NOT NULL PRIMARY KEY CHECK (length(coin_pub)=32)"
- ",denom_pub BYTEA NOT NULL CHECK (length(denom_pub)=32)"
+ ",denom_pub BYTEA NOT NULL" /* FIXME: Link this as a foreign key? */
+ ",denom_sig BYTEA NOT NULL"
",transaction_id INT8 NOT NULL"
",amount_currency VARCHAR(4) NOT NULL"
",amount_value INT4 NOT NULL"
",amount_fraction INT4 NOT NULL"
- ",merchant_pub BYTEA NOT NULL"
+ ",merchant_pub BYTEA NOT NULL CHECK (length(merchant_pub)=32)"
",h_contract BYTEA NOT NULL CHECK (length(h_contract)=64)"
",h_wire BYTEA NOT NULL CHECK (length(h_wire)=64)"
",coin_sig BYTEA NOT NULL CHECK (length(coin_sig)=64)"