- Users can directly login or request without the need for user registration. - Users can sign the requests either directly with own privateKey or by using a proxy - Request's timestamp will be checked for Sign expiry. - Request's sign will be checked for duplication. - Cash table update will try to insert if record is not there - Request Log table will also store a boolean value for sign by proxy or not - Updated the SQL schema for the above changes.
24 lines
474 B
SQL
24 lines
474 B
SQL
/* Node data */
|
|
TRUNCATE _backup;
|
|
TRUNCATE AuditTrade;
|
|
TRUNCATE BuyOrder;
|
|
TRUNCATE Cash;
|
|
TRUNCATE InputFLO;
|
|
TRUNCATE InputToken;
|
|
TRUNCATE OutputFLO;
|
|
TRUNCATE OutputToken;
|
|
TRUNCATE PriceHistory;
|
|
TRUNCATE RequestLog;
|
|
TRUNCATE SellOrder;
|
|
TRUNCATE UserSession;
|
|
TRUNCATE UserTag;
|
|
TRUNCATE TransferTransactions;
|
|
TRUNCATE TradeTransactions;
|
|
TRUNCATE Vault;
|
|
|
|
/* Blockchain data */
|
|
TRUNCATE LastTx;
|
|
TRUNCATE NodeList;
|
|
TRUNCATE TrustedList;
|
|
DELETE FROM TagList;
|
|
DELETE FROM AssetList; |