1BEGIN;
2
3CREATE TABLE "device_skip" (
4  "backend" text NOT NULL,
5  "device" inet NOT NULL,
6  "actionset" text[] DEFAULT '{}',
7  "deferrals" integer DEFAULT 0,
8  PRIMARY KEY ("backend", "device")
9);
10
11COMMIT;
12