summaryrefslogtreecommitdiff
path: root/src/exchangedb/exchange-0001.sql
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-29 11:46:06 +0200
committerChristian Grothoff <christian@grothoff.org>2021-10-29 11:46:06 +0200
commit08b23fb70ad1bd0fd024ab81be50f8daf04eb8b2 (patch)
treed354988d34d5d8471b48af8d9f2658178b9587d7 /src/exchangedb/exchange-0001.sql
parentab3042243df1432068e08f6d7f659d761ad6384c (diff)
downloadexchange-08b23fb70ad1bd0fd024ab81be50f8daf04eb8b2.tar.gz
exchange-08b23fb70ad1bd0fd024ab81be50f8daf04eb8b2.tar.bz2
exchange-08b23fb70ad1bd0fd024ab81be50f8daf04eb8b2.zip
fix SQL
Diffstat (limited to 'src/exchangedb/exchange-0001.sql')
-rw-r--r--src/exchangedb/exchange-0001.sql18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/exchangedb/exchange-0001.sql b/src/exchangedb/exchange-0001.sql
index 525b0269f..f1c85678f 100644
--- a/src/exchangedb/exchange-0001.sql
+++ b/src/exchangedb/exchange-0001.sql
@@ -49,8 +49,6 @@ COMMENT ON COLUMN denominations.denom_type
IS 'determines cipher type for blind signatures used with this denomination; 0 is for RSA';
COMMENT ON COLUMN denominations.age_restrictions
IS 'bitmask with the age restrictions that are being used for this denomination; 0 if denomination does not support the use of age restrictions';
-COMMENT ON COLUMN denominations.denom_options
- IS 'additional options being hashed into the denom hash of age restrictions';
COMMENT ON COLUMN denominations.denominations_serial
IS 'needed for exchange-auditor replication logic';
@@ -70,11 +68,11 @@ COMMENT ON TABLE denomination_revocations
CREATE TABLE IF NOT EXISTS wire_targets
(wire_target_serial_id BIGSERIAL UNIQUE
-,h_payto BYTEA NOT NULL CHECK (LENGTH(h_payto)=64),
-,payto_uri STRING NOT NULL
+,h_payto BYTEA NOT NULL CHECK (LENGTH(h_payto)=64)
+,payto_uri VARCHAR NOT NULL
,kyc_ok BOOLEAN NOT NULL DEFAULT (false)
-,oauth_username STRING NOT NULL
-,PRIMARY KEY (h_wire)
+,oauth_username VARCHAR NOT NULL
+,PRIMARY KEY (h_payto)
);
COMMENT ON TABLE wire_targets
IS 'All recipients of money via the exchange';
@@ -152,7 +150,7 @@ CREATE TABLE IF NOT EXISTS reserves_close
,reserve_uuid INT8 NOT NULL REFERENCES reserves (reserve_uuid) ON DELETE CASCADE
,execution_date INT8 NOT NULL
,wtid BYTEA NOT NULL CHECK (LENGTH(wtid)=32)
- ,wire_target_serial_id INT8 NOT NULL REFERENCES wire_targets (wire_target_serial_id),
+ ,wire_target_serial_id INT8 NOT NULL REFERENCES wire_targets (wire_target_serial_id)
,amount_val INT8 NOT NULL
,amount_frac INT4 NOT NULL
,closing_fee_val INT8 NOT NULL
@@ -316,7 +314,7 @@ CREATE TABLE IF NOT EXISTS deposits
,tiny BOOLEAN NOT NULL DEFAULT FALSE
,done BOOLEAN NOT NULL DEFAULT FALSE
,extension_blocked BOOLEAN NOT NULL DEFAULT FALSE
- ,extension_options STRING NOT NULL
+ ,extension_options VARCHAR NOT NULL
,UNIQUE (known_coin_id, merchant_pub, h_contract_terms)
);
COMMENT ON TABLE deposits
@@ -348,7 +346,7 @@ CREATE INDEX IF NOT EXISTS deposits_get_ready_index
(shard
,tiny
,done
- ,extension_blocked,
+ ,extension_blocked
,wire_deadline
,refund_deadline
);
@@ -357,7 +355,7 @@ COMMENT ON INDEX deposits_coin_pub_merchant_contract_index
CREATE INDEX IF NOT EXISTS deposits_iterate_matching_index
ON deposits
(merchant_pub
- ,h_wire
+ ,wire_target_serial_id
,done
,extension_blocked
,wire_deadline