diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-21 16:50:02 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-21 16:50:02 -0700 |
| commit | e4046964f0d8e7ad64a2977cad18b24557fc2251 (patch) | |
| tree | 5b73629d99cbcf2ab81a60a0a68cfa7c22b4692d /controller/schema.sql.c | |
| parent | ddebe2d4c7fa4220d2cfad3693edfb15bf7a737c (diff) | |
| download | infinitytier-e4046964f0d8e7ad64a2977cad18b24557fc2251.tar.gz infinitytier-e4046964f0d8e7ad64a2977cad18b24557fc2251.zip | |
Forgot to run schema2c.
Diffstat (limited to 'controller/schema.sql.c')
| -rw-r--r-- | controller/schema.sql.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/controller/schema.sql.c b/controller/schema.sql.c index a5d46973..1161451b 100644 --- a/controller/schema.sql.c +++ b/controller/schema.sql.c @@ -72,9 +72,11 @@ "CREATE TABLE Relay (\n"\ " networkId char(16) NOT NULL,\n"\ " nodeId char(10) NOT NULL,\n"\ -" address varchar(64) NOT NULL\n"\ +" phyAddress varchar(64) NOT NULL\n"\ ");\n"\ "\n"\ +"CREATE INDEX Relay_networkId ON Relay (networkId);\n"\ +"\n"\ "CREATE UNIQUE INDEX Relay_networkId_nodeId ON Relay (networkId, nodeId);\n"\ "\n"\ "CREATE TABLE Node (\n"\ @@ -87,6 +89,7 @@ "\n"\ "CREATE TABLE Rule (\n"\ " networkId char(16) NOT NULL,\n"\ +" ordering integer NOT NULL DEFAULT(0),\n"\ " nodeId char(10),\n"\ " vlanId integer,\n"\ " vlanPcp integer,\n"\ |
