diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-10 15:58:35 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-10 15:58:35 -0700 |
commit | 734cbb2f1e5e201d2ce295241d3890f6c4f872bd (patch) | |
tree | 86e5ffbb9d5cff58236cf3419db3417b93405781 /controller/schema.sql | |
parent | acbe8ad39881ca561b37f0cbff98146ab6ddd74e (diff) | |
download | infinitytier-734cbb2f1e5e201d2ce295241d3890f6c4f872bd.tar.gz infinitytier-734cbb2f1e5e201d2ce295241d3890f6c4f872bd.zip |
Controller modifications for default route are ready to test. Will require slight changes in ZeroTier Central when it goes live.
Diffstat (limited to 'controller/schema.sql')
-rw-r--r-- | controller/schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/schema.sql b/controller/schema.sql index 151098b7..be0bb399 100644 --- a/controller/schema.sql +++ b/controller/schema.sql @@ -88,7 +88,7 @@ CREATE INDEX Member_networkId_memberRevision ON Member(networkId, memberRevision CREATE TABLE Route ( networkId char(16) NOT NULL REFERENCES Network(id) ON DELETE CASCADE, target blob(16) NOT NULL, - via blob(16) NOT NULL, + via blob(16), targetNetmaskBits integer NOT NULL, ipVersion integer NOT NULL, flags integer NOT NULL, |