Files
netdisco/share/schema_versions/App-Netdisco-DB-41-42-PostgreSQL.sql
2017-05-23 11:34:27 +01:00

13 lines
242 B
PL/PgSQL

BEGIN;
CREATE TABLE "device_skip" (
"backend" text NOT NULL,
"device" inet NOT NULL,
"actionset" text[] DEFAULT '{}',
"deferrals" integer DEFAULT 0,
"skipover" boolean DEFAULT false,
PRIMARY KEY ("backend", "device")
);
COMMIT;