save and load netmap positions for same device groups

This commit is contained in:
Oliver Gorwits
2017-12-20 22:05:51 +00:00
parent b7cd0251ff
commit aba359d2a9
6 changed files with 89 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
BEGIN;
CREATE TABLE "netmap_positions" (
"id" serial PRIMARY KEY,
"device_groups" text[] UNIQUE NOT NULL,
"positions" text NOT NULL
);
COMMIT;