diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-06-29 15:34:26 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-06-29 15:34:26 -0700 |
| commit | 30e4a188d0a5c883f3ea579dcf01d5c409b185d7 (patch) | |
| tree | 2d38a28d29f58c82f750c18d89096bf3ec78e00f /controller/schema.sql.c | |
| parent | 5c9411a671dbc62297863bfa732929e197557697 (diff) | |
| download | infinitytier-30e4a188d0a5c883f3ea579dcf01d5c409b185d7.tar.gz infinitytier-30e4a188d0a5c883f3ea579dcf01d5c409b185d7.zip | |
ipLocalRoutes now exposed via network objects in JSON controller API, and documentation changes.
Diffstat (limited to 'controller/schema.sql.c')
| -rw-r--r-- | controller/schema.sql.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/controller/schema.sql.c b/controller/schema.sql.c index c47d1b49..30b88850 100644 --- a/controller/schema.sql.c +++ b/controller/schema.sql.c @@ -33,7 +33,7 @@ "\n"\ "CREATE TABLE IpAssignment (\n"\ " networkId char(16) NOT NULL REFERENCES Network(id) ON DELETE CASCADE,\n"\ -" nodeId char(10) NOT NULL REFERENCES Node(id) ON DELETE CASCADE,\n"\ +" nodeId char(10) REFERENCES Node(id) ON DELETE CASCADE,\n"\ " type integer NOT NULL DEFAULT(0),\n"\ " ip blob(16) NOT NULL,\n"\ " ipNetmaskBits integer NOT NULL DEFAULT(0),\n"\ @@ -76,7 +76,8 @@ " networkId char(16) NOT NULL REFERENCES Network(id) ON DELETE CASCADE,\n"\ " ruleNo integer NOT NULL,\n"\ " nodeId char(10) REFERENCES Node(id),\n"\ -" portId char(10) REFERENCES Node(id),\n"\ +" sourcePort char(10),\n"\ +" destPort char(10),\n"\ " vlanId integer,\n"\ " vlanPcp integer,\n"\ " etherType integer,\n"\ |
