Add memberRevision stuff to JSON output, and update docs.

This commit is contained in:
Adam Ierymenko 2015-07-16 17:42:47 -07:00
parent 99969b186b
commit 0db7c94c90
4 changed files with 12 additions and 6 deletions

View file

@ -58,7 +58,7 @@ CREATE TABLE Member (
nodeId char(10) NOT NULL REFERENCES Node(id) ON DELETE CASCADE,
authorized integer NOT NULL DEFAULT(0),
activeBridge integer NOT NULL DEFAULT(0),
memberRevision integer NOT NULL DEFAULT(0)
memberRevision integer NOT NULL DEFAULT(0),
PRIMARY KEY (networkId, nodeId)
);