Track client version and tell whether active nodes support circuit test.

This commit is contained in:
Adam Ierymenko 2016-02-04 13:38:42 -08:00
commit 90801a94d3
3 changed files with 34 additions and 19 deletions

View file

@ -40,6 +40,9 @@ CREATE TABLE NodeHistory (
networkVisitCounter INTEGER NOT NULL DEFAULT(0),
networkRequestAuthorized INTEGER NOT NULL DEFAULT(0),
requestTime INTEGER NOT NULL DEFAULT(0),
clientMajorVersion INTEGER NOT NULL DEFAULT(0),
clientMinorVersion INTEGER NOT NULL DEFAULT(0),
clientRevision INTEGER NOT NULL DEFAULT(0),
networkRequestMetaData VARCHAR(1024),
fromAddress VARCHAR(128)
);