mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Bugfixes.
This commit is contained in:
@@ -24,14 +24,12 @@ int TxnDBCount = sizeof(TxnDBInit) / sizeof(const char *);
|
||||
|
||||
const char *AcctTxnDBInit[] = {
|
||||
"CREATE TABLE AccountTransactions ( \
|
||||
TransID CHARACTER964) PRIMARY KEY \
|
||||
TransID CHARACTER(64) PRIMARY KEY, \
|
||||
Account CHARACTER(64), \
|
||||
LedgerSeq BIGINT UNSIGNED, \
|
||||
LedgerSeq BIGINT UNSIGNED \
|
||||
);",
|
||||
"CREATE INDEX AcctTxindex ON \
|
||||
AccountTransactions(Account), \
|
||||
AccountTransactions(LedgerSeq), \
|
||||
AccountTransactions(TransID);"
|
||||
AccountTransactions(Account, LedgerSeq, TransID);"
|
||||
};
|
||||
|
||||
int AcctTxnDBCount = sizeof(AcctTxnDBInit) / sizeof(const char *);
|
||||
|
||||
Reference in New Issue
Block a user