change from ignore to skip name

This commit is contained in:
Oliver Gorwits
2017-05-21 22:35:38 +01:00
parent ed193356f8
commit cf8589aba2
4 changed files with 10 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
BEGIN;
CREATE TABLE "device_ignore" (
CREATE TABLE "device_skip" (
"backend" text NOT NULL,
"device" inet NOT NULL,
"action" text NOT NULL,
"failures" integer DEFAULT 0,
"ignore" boolean DEFAULT false,
"skipover" boolean DEFAULT false,
PRIMARY KEY ("backend", "device", "action")
);