1BEGIN;
2
3CREATE TABLE "netmap_positions" (
4  "id" serial PRIMARY KEY,
5  "device_groups" text[] NOT NULL,
6  "vlan" integer NOT NULL DEFAULT 0,
7  "positions" text NOT NULL,
8  UNIQUE ("device_groups", "vlan")
9);
10
11COMMIT;
12