summaryrefslogtreecommitdiff
path: root/controller/schema.sql
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2015-07-16 17:42:47 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2015-07-16 17:42:47 -0700
commit0db7c94c9004ac488b6163905d80f7515141d9c6 (patch)
tree5106f4247b1413a42363f955bf56972a0bb90b0a /controller/schema.sql
parent99969b186b3a078fb5cc8d3bfa004ebf9fc6d95a (diff)
downloadinfinitytier-0db7c94c9004ac488b6163905d80f7515141d9c6.tar.gz
infinitytier-0db7c94c9004ac488b6163905d80f7515141d9c6.zip
Add memberRevision stuff to JSON output, and update docs.
Diffstat (limited to 'controller/schema.sql')
-rw-r--r--controller/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/schema.sql b/controller/schema.sql
index ea816b95..c3eec234 100644
--- a/controller/schema.sql
+++ b/controller/schema.sql
@@ -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)
);