better sidebar look and layout

This commit is contained in:
Oliver Gorwits
2017-12-23 00:47:17 +00:00
parent 1def41da67
commit 9f9971ff4e
13 changed files with 495 additions and 1367 deletions

View File

@@ -2,8 +2,10 @@ BEGIN;
CREATE TABLE "netmap_positions" (
"id" serial PRIMARY KEY,
"device_groups" text[] UNIQUE NOT NULL,
"positions" text NOT NULL
"device_groups" text[] NOT NULL,
"vlan" integer NOT NULL DEFAULT 0,
"positions" text NOT NULL,
UNIQUE ("device_groups", "vlan")
);
COMMIT;