summaryrefslogtreecommitdiff
path: root/src/exchangedb/exchange-0001.sql
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-03-05 15:13:07 +0100
committerChristian Grothoff <christian@grothoff.org>2022-03-05 15:13:07 +0100
commit5fa977cc05daca469044711ffb6a497287094c70 (patch)
tree2d6aa23e13f0ec088bdcc20074285bf2493a0a0d /src/exchangedb/exchange-0001.sql
parent841e56bafd64e8c1aea29dc542a2d9d0cd1bc74e (diff)
downloadexchange-5fa977cc05daca469044711ffb6a497287094c70.tar.gz
exchange-5fa977cc05daca469044711ffb6a497287094c70.tar.bz2
exchange-5fa977cc05daca469044711ffb6a497287094c70.zip
work on global fee structure
Diffstat (limited to 'src/exchangedb/exchange-0001.sql')
-rw-r--r--src/exchangedb/exchange-0001.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/exchangedb/exchange-0001.sql b/src/exchangedb/exchange-0001.sql
index a3996d120..58a6b7288 100644
--- a/src/exchangedb/exchange-0001.sql
+++ b/src/exchangedb/exchange-0001.sql
@@ -858,6 +858,14 @@ CREATE TABLE IF NOT EXISTS global_fee
,history_fee_frac INT4 NOT NULL
,kyc_fee_val INT8 NOT NULL
,kyc_fee_frac INT4 NOT NULL
+ ,account_fee_val INT8 NOT NULL
+ ,account_fee_frac INT4 NOT NULL
+ ,purse_fee_val INT8 NOT NULL
+ ,purse_fee_frac INT4 NOT NULL
+ ,purse_timeout INT8 NOT NULL
+ ,kyc_timeout INT8 NOT NULL
+ ,history_expiration INT8 NOT NULL
+ ,purse_account_limit INT4 NOT NULL
,master_sig BYTEA NOT NULL CHECK (LENGTH(master_sig)=64)
,PRIMARY KEY (start_date)
);