Fix bug in AccountTransactions database creation.

This commit is contained in:
JoelKatz
2013-04-04 15:26:35 -07:00
parent 437fd44e42
commit b3f2f68682

View File

@@ -25,7 +25,7 @@ const char *TxnDBInit[] = {
"CREATE TABLE AccountTransactions ( \
TransID CHARACTER(64), \
Account CHARACTER(64), \
LedgerSeq BIGINT UNSIGNED \
LedgerSeq BIGINT UNSIGNED, \
TxnSeq INTEGER \
);",
"CREATE INDEX AcctTxIDIndex ON \