aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/exchange-0001-part.sql
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-04-23 19:01:28 +0200
committerChristian Grothoff <christian@grothoff.org>2022-04-23 19:01:28 +0200
commitb054c969cbd84f7ed0f61da3db6a8168b944318f (patch)
treec0ffbd484e5edfa11382fbdc2a50f225371509dc /src/exchangedb/exchange-0001-part.sql
parentcf358f9546c89d9a52c444d18def703547a9d223 (diff)
downloadexchange-b054c969cbd84f7ed0f61da3db6a8168b944318f.tar.xz
-add more accounting fields to reserve table
Diffstat (limited to 'src/exchangedb/exchange-0001-part.sql')
-rw-r--r--src/exchangedb/exchange-0001-part.sql10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/exchangedb/exchange-0001-part.sql b/src/exchangedb/exchange-0001-part.sql
index b3e62a1e6..0a333880b 100644
--- a/src/exchangedb/exchange-0001-part.sql
+++ b/src/exchangedb/exchange-0001-part.sql
@@ -99,7 +99,15 @@ COMMENT ON TABLE reserves
COMMENT ON COLUMN reserves.reserve_pub
IS 'EdDSA public key of the reserve. Knowledge of the private key implies ownership over the balance.';
COMMENT ON COLUMN reserves.current_balance_val
- IS 'Current balance remaining with the reserve';
+ IS 'Current balance remaining with the reserve.';
+COMMENT ON COLUMN reserves.purses_active
+ IS 'Number of purses that were created by this reserve that are not expired and not fully paid.';
+COMMENT ON COLUMN reserves.purses_allowed
+ IS 'Number of purses that this reserve is allowed to have active at most.';
+COMMENT ON COLUMN reserves.kyc_required
+ IS 'True if a KYC check must have been passed before withdrawing from this reserve. Set to true once a reserve received a P2P payment.';
+COMMENT ON COLUMN reserves.kyc_passed
+ IS 'True once KYC was passed for this reserve. The KYC details are then available via the wire_targets table under the key of wire_target_h_payto which is to be derived from the reserve_pub and the base URL of this exchange.';
COMMENT ON COLUMN reserves.expiration_date
IS 'Used to trigger closing of reserves that have not been drained after some time';
COMMENT ON COLUMN reserves.gc_date