diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-06-13 11:34:31 +0200 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-06-13 11:34:31 +0200 |
| commit | 96a58becf8fe10efceab38c49553b009754d2632 (patch) | |
| tree | b4e73bbced3c94eb16ac79cfc8dd2b78eccb7938 /controller/schema.sql | |
| parent | 8a9715f183096e35e964a195b61f84bb263a9f85 (diff) | |
| download | infinitytier-96a58becf8fe10efceab38c49553b009754d2632.tar.gz infinitytier-96a58becf8fe10efceab38c49553b009754d2632.zip | |
Gateways support in network controller schema and database (not implemented yet in client) toward GitHub issue #178
Diffstat (limited to 'controller/schema.sql')
| -rw-r--r-- | controller/schema.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/controller/schema.sql b/controller/schema.sql index 25adce40..809c7161 100644 --- a/controller/schema.sql +++ b/controller/schema.sql @@ -24,6 +24,15 @@ CREATE TABLE Node ( firstSeen integer NOT NULL DEFAULT(0) ); +CREATE TABLE Gateway ( + networkId char(16) NOT NULL REFERENCES Network(id) ON DELETE CASCADE, + ip blob(16) NOT NULL, + ipVersion integer NOT NULL DEFAULT(4), + metric integer NOT NULL DEFAULT(0) +); + +CREATE UNIQUE INDEX Gateway_networkId_ip ON Gateway (networkId, ip); + CREATE TABLE IpAssignment ( networkId char(16) NOT NULL REFERENCES Network(id) ON DELETE CASCADE, nodeId char(10) NOT NULL REFERENCES Node(id) ON DELETE CASCADE, |
