Fix NOT NULLs in PostgreSQL base schema

refs #11110
This commit is contained in:
Markus Frosch 2016-03-01 00:20:00 +01:00
parent 5f9f97f122
commit 133b5fb0a1
1 changed files with 3 additions and 3 deletions

View File

@ -510,9 +510,9 @@ CREATE TABLE icinga_host (
action_url character varying(255) DEFAULT NULL,
icon_image character varying(255) DEFAULT NULL,
icon_image_alt character varying(255) DEFAULT NULL,
has_agent enum_boolean NOT NULL DEFAULT NULL,
master_should_connect enum_boolean NOT NULL DEFAULT NULL,
accept_config enum_boolean NOT NULL DEFAULT NULL,
has_agent enum_boolean DEFAULT NULL,
master_should_connect enum_boolean DEFAULT NULL,
accept_config enum_boolean DEFAULT NULL,
PRIMARY KEY (id),
CONSTRAINT icinga_host_zone
FOREIGN KEY (zone_id)