-- TODO: -- -- - SEE mysql.sql TODOs -- - FOREIGN KEYS (INDEXES), TIMESTAMPs overview -- - SET sql_mode = ??? -- -- NOTES: -- -- INSERT INTO director_activity_log (object_type, object_name, action_name, author, change_time, checksum) VALUES('object', 'foo', 'create', 'alex', CURRENT_TIMESTAMP, decode('cf23df2207d99a74fbe169e3eba035e633b65d94', 'hex')); -- CREATE TYPE enum_activity_action AS ENUM('create', 'delete', 'modify'); CREATE TYPE enum_boolean AS ENUM('y', 'n'); CREATE TYPE enum_property_format AS ENUM('string', 'expression', 'json'); CREATE TYPE enum_object_type AS ENUM('object', 'template'); CREATE TYPE enum_timeperiod_range_type AS ENUM('include', 'exclude'); CREATE TYPE enum_merge_behaviour AS ENUM('set', 'add', 'substract'); CREATE TYPE enum_command_object_type AS ENUM('object', 'template', 'external_object'); CREATE TYPE enum_apply_object_type AS ENUM('object', 'template', 'apply'); CREATE TYPE enum_state_name AS ENUM('OK', 'Warning', 'Critical', 'Unknown', 'Up', 'Down'); CREATE TYPE enum_type_name AS ENUM('DowntimeStart', 'DowntimeEnd', 'DowntimeRemoved', 'Custom', 'Acknowledgement', 'Problem', 'Recovery', 'FlappingStart', 'FlappingEnd'); CREATE TYPE enum_sync_rule_object_type AS ENUM('host', 'user'); CREATE TYPE enum_sync_rule_update_policy AS ENUM('merge', 'override', 'ignore'); CREATE TYPE enum_sync_property_merge_policy AS ENUM('override', 'merge'); CREATE TABLE director_dbversion ( schema_version INTEGER NOT NULL ); CREATE TABLE director_activity_log ( id bigserial, object_type character varying(64) NOT NULL, object_name character varying(255) NOT NULL, action_name enum_activity_action NOT NULL, old_properties text DEFAULT NULL, new_properties text DEFAULT NULL, author character varying(64) NOT NULL, change_time timestamp with time zone NOT NULL, checksum bytea NOT NULL UNIQUE CHECK(LENGTH(checksum) = 20), parent_checksum bytea DEFAULT NULL CHECK(parent_checksum IS NULL OR LENGTH(checksum) = 20), PRIMARY KEY (id) ); CREATE INDEX activity_log_sort_idx ON director_activity_log (change_time); CREATE INDEX activity_log_search_idx ON director_activity_log (object_name); CREATE INDEX activity_log_search_idx2 ON director_activity_log (object_type, object_name, change_time); COMMENT ON COLUMN director_activity_log.old_properties IS 'Property hash, JSON'; COMMENT ON COLUMN director_activity_log.new_properties IS 'Property hash, JSON'; CREATE TABLE director_generated_config ( checksum bytea CHECK(LENGTH(checksum) = 20), director_version character varying(64) DEFAULT NULL, director_db_version integer DEFAULT NULL, duration integer DEFAULT NULL, last_activity_checksum bytea NOT NULL CHECK(LENGTH(last_activity_checksum) = 20), PRIMARY KEY (checksum), CONSTRAINT director_generated_config_activity FOREIGN KEY (last_activity_checksum) REFERENCES director_activity_log (checksum) ON DELETE RESTRICT ON UPDATE RESTRICT ); CREATE INDEX activity_checksum ON director_generated_config (last_activity_checksum); COMMENT ON COLUMN director_generated_config.checksum IS 'SHA1(last_activity_checksum;file_path=checksum;file_path=checksum;...)'; COMMENT ON COLUMN director_generated_config.duration IS 'Config generation duration (ms)'; CREATE TABLE director_generated_file ( checksum bytea CHECK(LENGTH(checksum) = 20), content text DEFAULT NULL, PRIMARY KEY (checksum) ); COMMENT ON COLUMN director_generated_file.checksum IS 'SHA1(content)'; CREATE TABLE director_generated_config_file ( config_checksum bytea CHECK(LENGTH(config_checksum) = 20), file_checksum bytea CHECK(LENGTH(file_checksum) = 20), file_path character varying(64) NOT NULL, PRIMARY KEY (config_checksum, file_path), CONSTRAINT director_generated_config_file_config FOREIGN KEY (config_checksum) REFERENCES director_generated_config (checksum) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT director_generated_config_file_file FOREIGN KEY (file_checksum) REFERENCES director_generated_file (checksum) ON DELETE RESTRICT ON UPDATE RESTRICT ); CREATE INDEX config ON director_generated_config_file (config_checksum); CREATE INDEX checksum ON director_generated_config_file (file_checksum); COMMENT ON COLUMN director_generated_config_file.file_path IS 'e.g. zones/nafta/hosts.conf'; CREATE TABLE director_deployment_log ( id bigserial, config_id bigint NOT NULL, peer_identity character varying(64) NOT NULL, start_time timestamp with time zone NOT NULL, end_time timestamp with time zone DEFAULT NULL, abort_time timestamp with time zone DEFAULT NULL, duration_connection integer DEFAULT NULL, duration_dump integer DEFAULT NULL, connection_succeeded enum_boolean DEFAULT NULL, dump_succeeded enum_boolean DEFAULT NULL, startup_succeeded enum_boolean DEFAULT NULL, username character varying(64) DEFAULT NULL, startup_log text DEFAULT NULL, PRIMARY KEY (id) ); COMMENT ON COLUMN director_deployment_log.duration_connection IS 'The time it took to connect to an Icinga node (ms)'; COMMENT ON COLUMN director_deployment_log.duration_dump IS 'Time spent dumping the config (ms)'; COMMENT ON COLUMN director_deployment_log.username IS 'The user that triggered this deployment'; CREATE TABLE director_datalist ( id serial, list_name character varying(255) NOT NULL, owner character varying(255) NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX datalist_list_name ON director_datalist (list_name); CREATE TABLE director_datalist_entry ( list_id integer NOT NULL, entry_name character varying(255) DEFAULT NULL, entry_value text DEFAULT NULL, format enum_property_format, PRIMARY KEY (list_id, entry_name), CONSTRAINT director_datalist_entry_datalist FOREIGN KEY (list_id) REFERENCES director_datalist (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX datalist_entry_datalist ON director_datalist_entry (list_id); CREATE TABLE director_datafield ( id serial, varname character varying(255) NOT NULL, caption character varying(255) NOT NULL, description text DEFAULT NULL, datatype character varying(255) NOT NULL, -- datatype_param? multiple ones? format enum_property_format, PRIMARY KEY (id) ); CREATE TABLE icinga_zone ( id serial, parent_zone_id integer DEFAULT NULL, object_name character varying(255) NOT NULL UNIQUE, object_type enum_object_type NOT NULL, is_global enum_boolean NOT NULL DEFAULT 'n', PRIMARY KEY (id), CONSTRAINT icinga_zone_parent_zone FOREIGN KEY (parent_zone_id) REFERENCES icinga_zone (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX zone_parent ON icinga_zone (parent_zone_id); CREATE TABLE icinga_zone_inheritance ( zone_id integer NOT NULL, parent_zone_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (zone_id, parent_zone_id), CONSTRAINT icinga_zone_inheritance_zone FOREIGN KEY (zone_id) REFERENCES icinga_zone (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_zone_inheritance_parent_zone FOREIGN KEY (parent_zone_id) REFERENCES icinga_zone (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX zone_inheritance_unique_order ON icinga_zone_inheritance (zone_id, weight); CREATE INDEX zone_inheritance_zone ON icinga_zone_inheritance (zone_id); CREATE INDEX zone_inheritance_zone_parent ON icinga_zone_inheritance (parent_zone_id); CREATE TABLE icinga_timeperiod ( id serial, object_name character varying(255) NOT NULL, display_name character varying(255) DEFAULT NULL, update_method character varying(64) DEFAULT NULL, zone_id integer DEFAULT NULL, object_type enum_object_type NOT NULL, PRIMARY KEY (id), CONSTRAINT icinga_timeperiod_zone FOREIGN KEY (zone_id) REFERENCES icinga_zone (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX timeperiod_object_name ON icinga_timeperiod (object_name, zone_id); CREATE INDEX timeperiod_zone ON icinga_timeperiod (zone_id); COMMENT ON COLUMN icinga_timeperiod.update_method IS 'Usually LegacyTimePeriod'; CREATE TABLE icinga_timeperiod_inheritance ( timeperiod_id integer NOT NULL, parent_timeperiod_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (timeperiod_id, parent_timeperiod_id), CONSTRAINT icinga_timeperiod_inheritance_timeperiod FOREIGN KEY (timeperiod_id) REFERENCES icinga_timeperiod (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_timeperiod_inheritance_parent_timeperiod FOREIGN KEY (parent_timeperiod_id) REFERENCES icinga_timeperiod (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX timeperiod_inheritance_unique_order ON icinga_timeperiod_inheritance (timeperiod_id, weight); CREATE INDEX timeperiod_inheritance_timeperiod ON icinga_timeperiod_inheritance (timeperiod_id); CREATE INDEX timeperiod_inheritance_timeperiod_parent ON icinga_timeperiod_inheritance (parent_timeperiod_id); CREATE TABLE icinga_timeperiod_range ( timeperiod_id serial, timeperiod_key character varying(255) NOT NULL, timeperiod_value character varying(255) NOT NULL, range_type enum_timeperiod_range_type NOT NULL DEFAULT 'include', merge_behaviour enum_merge_behaviour NOT NULL DEFAULT 'set', PRIMARY KEY (timeperiod_id, range_type, timeperiod_key), CONSTRAINT icinga_timeperiod_range_timeperiod FOREIGN KEY (timeperiod_id) REFERENCES icinga_timeperiod (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX timeperiod_range_timeperiod ON icinga_timeperiod_range (timeperiod_id); COMMENT ON COLUMN icinga_timeperiod_range.timeperiod_key IS 'monday, ...'; COMMENT ON COLUMN icinga_timeperiod_range.timeperiod_value IS '00:00-24:00, ...'; COMMENT ON COLUMN icinga_timeperiod_range.range_type IS 'include -> ranges {}, exclude ranges_ignore {} - not yet'; COMMENT ON COLUMN icinga_timeperiod_range.merge_behaviour IS 'set -> = {}, add -> += {}, substract -> -= {}'; CREATE TABLE icinga_command ( id serial, object_name character varying(255) NOT NULL, methods_execute character varying(64) DEFAULT NULL, command character varying(255) DEFAULT NULL, -- env text DEFAULT NULL, -- vars text DEFAULT NULL, timeout smallint DEFAULT NULL, zone_id integer DEFAULT NULL, object_type enum_command_object_type NOT NULL, PRIMARY KEY (id), CONSTRAINT icinga_command_zone FOREIGN KEY (zone_id) REFERENCES icinga_zone (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX command_object_name ON icinga_command (object_name, zone_id); CREATE INDEX command_zone ON icinga_command (zone_id); COMMENT ON COLUMN icinga_command.object_type IS 'external_object is an attempt to work with existing commands'; CREATE TABLE icinga_command_inheritance ( command_id integer NOT NULL, parent_command_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (command_id, parent_command_id), CONSTRAINT icinga_command_inheritance_command FOREIGN KEY (command_id) REFERENCES icinga_command (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_command_inheritance_parent_command FOREIGN KEY (parent_command_id) REFERENCES icinga_command (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX command_inheritance_unique_order ON icinga_command_inheritance (command_id, weight); CREATE INDEX command_inheritance_command ON icinga_command_inheritance (command_id); CREATE INDEX command_inheritance_command_parent ON icinga_command_inheritance (parent_command_id); CREATE TABLE icinga_command_argument ( id serial, command_id integer NOT NULL, argument_name character varying(64) DEFAULT NULL, argument_value text DEFAULT NULL, argument_format enum_property_format NOT NULL DEFAULT 'string', key_string character varying(64) DEFAULT NULL, description text DEFAULT NULL, skip_key enum_boolean DEFAULT NULL, set_if character varying(255) DEFAULT NULL, -- (string expression, must resolve to a numeric value) set_if_format enum_property_format DEFAULT NULL, sort_order smallint DEFAULT NULL, -- -> order repeat_key enum_boolean DEFAULT NULL, PRIMARY KEY (id), CONSTRAINT icinga_command_argument_command FOREIGN KEY (command_id) REFERENCES icinga_command (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE UNIQUE INDEX command_argument_sort_idx ON icinga_command_argument (command_id, sort_order); CREATE UNIQUE INDEX command_argument_unique_idx ON icinga_command_argument (command_id, argument_name); CREATE INDEX command_argument_command ON icinga_command_argument (command_id); COMMENT ON COLUMN icinga_command_argument.argument_name IS '-x, --host'; COMMENT ON COLUMN icinga_command_argument.key_string IS 'Overrides name'; COMMENT ON COLUMN icinga_command_argument.repeat_key IS 'Useful with array values'; CREATE TABLE icinga_command_var ( command_id integer NOT NULL, varname character varying(255) DEFAULT NULL, varvalue text DEFAULT NULL, format enum_property_format NOT NULL DEFAULT 'string', PRIMARY KEY (command_id, varname), CONSTRAINT icinga_command_var_command FOREIGN KEY (command_id) REFERENCES icinga_command (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX command_var_command ON icinga_command_var (command_id); CREATE TABLE icinga_endpoint ( id serial, zone_id integer DEFAULT NULL, object_name character varying(255) NOT NULL, address character varying(255) DEFAULT NULL, port smallint DEFAULT NULL, log_duration character varying(32) DEFAULT NULL, object_type enum_object_type NOT NULL, PRIMARY KEY (id), CONSTRAINT icinga_endpoint_zone FOREIGN KEY (zone_id) REFERENCES icinga_zone (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX endpoint_object_name ON icinga_endpoint (object_name); CREATE INDEX endpoint_zone ON icinga_endpoint (zone_id); COMMENT ON COLUMN icinga_endpoint.address IS 'IP address / hostname of remote node'; COMMENT ON COLUMN icinga_endpoint.port IS '5665 if not set'; COMMENT ON COLUMN icinga_endpoint.log_duration IS '1d if not set'; CREATE TABLE icinga_endpoint_inheritance ( endpoint_id integer NOT NULL, parent_endpoint_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (endpoint_id, parent_endpoint_id), CONSTRAINT icinga_endpoint_inheritance_endpoint FOREIGN KEY (endpoint_id) REFERENCES icinga_endpoint (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_endpoint_inheritance_parent_endpoint FOREIGN KEY (parent_endpoint_id) REFERENCES icinga_endpoint (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX endpoint_inheritance_unique_order ON icinga_endpoint_inheritance (endpoint_id, weight); CREATE INDEX endpoint_inheritance_endpoint ON icinga_endpoint_inheritance (endpoint_id); CREATE INDEX endpoint_inheritance_endpoint_parent ON icinga_endpoint_inheritance (parent_endpoint_id); CREATE TABLE icinga_host ( id serial, object_name character varying(255) NOT NULL, address character varying(64) DEFAULT NULL, address6 character varying(45) DEFAULT NULL, check_command_id integer DEFAULT NULL, max_check_attempts integer DEFAULT NULL, check_period_id integer DEFAULT NULL, check_interval character varying(8) DEFAULT NULL, retry_interval character varying(8) DEFAULT NULL, enable_notifications enum_boolean DEFAULT NULL, enable_active_checks enum_boolean DEFAULT NULL, enable_passive_checks enum_boolean DEFAULT NULL, enable_event_handler enum_boolean DEFAULT NULL, enable_flapping enum_boolean DEFAULT NULL, enable_perfdata enum_boolean DEFAULT NULL, event_command_id integer DEFAULT NULL, flapping_threshold smallint default null, volatile enum_boolean DEFAULT NULL, zone_id integer DEFAULT NULL, command_endpoint_id integer DEFAULT NULL, notes text DEFAULT NULL, notes_url character varying(255) DEFAULT NULL, action_url character varying(255) DEFAULT NULL, icon_image character varying(255) DEFAULT NULL, icon_image_alt character varying(255) DEFAULT NULL, object_type enum_object_type NOT NULL, PRIMARY KEY (id), CONSTRAINT icinga_host_zone FOREIGN KEY (zone_id) REFERENCES icinga_zone (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT icinga_host_check_period FOREIGN KEY (check_period_id) REFERENCES icinga_timeperiod (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT icinga_host_check_command FOREIGN KEY (check_command_id) REFERENCES icinga_command (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT icinga_host_event_command FOREIGN KEY (event_command_id) REFERENCES icinga_command (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT icinga_host_command_endpoint FOREIGN KEY (command_endpoint_id) REFERENCES icinga_endpoint (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX object_name_host ON icinga_host (object_name, zone_id); CREATE INDEX host_zone ON icinga_host (zone_id); CREATE INDEX host_timeperiod ON icinga_host (check_period_id); CREATE INDEX host_check_command ON icinga_host (check_command_id); CREATE INDEX host_event_command ON icinga_host (event_command_id); CREATE INDEX host_command_endpoint ON icinga_host (command_endpoint_id); CREATE TABLE icinga_host_inheritance ( host_id integer NOT NULL, parent_host_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (host_id, parent_host_id), CONSTRAINT icinga_host_inheritance_host FOREIGN KEY (host_id) REFERENCES icinga_host (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_host_inheritance_parent_host FOREIGN KEY (parent_host_id) REFERENCES icinga_host (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX host_inheritance_unique_order ON icinga_host_inheritance (host_id, weight); CREATE INDEX host_inheritance_host ON icinga_host_inheritance (host_id); CREATE INDEX host_inheritance_host_parent ON icinga_host_inheritance (parent_host_id); CREATE TABLE icinga_host_field ( host_id integer NOT NULL, datafield_id integer NOT NULL, is_required enum_boolean NOT NULL, PRIMARY KEY (host_id, datafield_id), CONSTRAINT icinga_host_field_host FOREIGN KEY (host_id) REFERENCES icinga_host (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_host_field_datafield FOREIGN KEY (datafield_id) REFERENCES director_datafield (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE UNIQUE INDEX host_field_key ON icinga_host_field (host_id, datafield_id); CREATE INDEX host_field_host ON icinga_host_field (host_id); CREATE INDEX host_field_datafield ON icinga_host_field (datafield_id); COMMENT ON COLUMN icinga_host_field.host_id IS 'Makes only sense for templates'; CREATE TABLE icinga_host_var ( host_id integer NOT NULL, varname character varying(255) DEFAULT NULL, varvalue text DEFAULT NULL, format enum_property_format, -- immer string vorerst PRIMARY KEY (host_id, varname), CONSTRAINT icinga_host_var_host FOREIGN KEY (host_id) REFERENCES icinga_host (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX host_var_search_idx ON icinga_host_var (varname); CREATE INDEX host_var_host ON icinga_host_var (host_id); CREATE TABLE icinga_service ( id serial, object_name character varying(255) NOT NULL, display_name character varying(255) DEFAULT NULL, check_command_id integer DEFAULT NULL, max_check_attempts integer DEFAULT NULL, check_period_id integer DEFAULT NULL, check_interval character varying(8) DEFAULT NULL, retry_interval character varying(8) DEFAULT NULL, enable_notifications enum_boolean DEFAULT NULL, enable_active_checks enum_boolean DEFAULT NULL, enable_passive_checks enum_boolean DEFAULT NULL, enable_event_handler enum_boolean DEFAULT NULL, enable_flapping enum_boolean DEFAULT NULL, enable_perfdata enum_boolean DEFAULT NULL, event_command_id integer DEFAULT NULL, flapping_threshold smallint DEFAULT NULL, volatile enum_boolean DEFAULT NULL, zone_id integer DEFAULT NULL, command_endpoint_id integer DEFAULT NULL, notes text DEFAULT NULL, notes_url character varying(255) DEFAULT NULL, action_url character varying(255) DEFAULT NULL, icon_image character varying(255) DEFAULT NULL, icon_image_alt character varying(255) DEFAULT NULL, object_type enum_apply_object_type NOT NULL, PRIMARY KEY (id), -- UNIQUE INDEX object_name (object_name, zone_id), CONSTRAINT icinga_service_zone FOREIGN KEY (zone_id) REFERENCES icinga_zone (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT icinga_service_check_period FOREIGN KEY (check_period_id) REFERENCES icinga_timeperiod (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT icinga_service_check_command FOREIGN KEY (check_command_id) REFERENCES icinga_command (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT icinga_service_event_command FOREIGN KEY (event_command_id) REFERENCES icinga_command (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT icinga_service_command_endpoint FOREIGN KEY (command_endpoint_id) REFERENCES icinga_endpoint (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX service_zone ON icinga_service (zone_id); CREATE INDEX service_timeperiod ON icinga_service (check_period_id); CREATE INDEX service_check_command ON icinga_service (check_command_id); CREATE INDEX service_event_command ON icinga_service (event_command_id); CREATE INDEX service_command_endpoint ON icinga_service (command_endpoint_id); CREATE TABLE icinga_service_inheritance ( service_id integer NOT NULL, parent_service_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (service_id, parent_service_id), CONSTRAINT icinga_service_inheritance_service FOREIGN KEY (service_id) REFERENCES icinga_service (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_service_inheritance_parent_service FOREIGN KEY (parent_service_id) REFERENCES icinga_service (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX service_inheritance_unique_order ON icinga_service_inheritance (service_id, weight); CREATE INDEX service_inheritance_service ON icinga_service_inheritance (service_id); CREATE INDEX service_inheritance_service_parent ON icinga_service_inheritance (parent_service_id); CREATE TABLE icinga_service_field ( service_id integer NOT NULL, datafield_id integer NOT NULL, is_required enum_boolean NOT NULL, PRIMARY KEY (service_id, datafield_id), CONSTRAINT icinga_service_field_service FOREIGN KEY (service_id) REFERENCES icinga_service (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_service_field_datafield FOREIGN KEY (datafield_id) REFERENCES director_datafield (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE UNIQUE INDEX service_field_key ON icinga_service_field (service_id, datafield_id); CREATE INDEX service_field_service ON icinga_service_field (service_id); CREATE INDEX service_field_datafield ON icinga_service_field (datafield_id); COMMENT ON COLUMN icinga_service_field.service_id IS 'Makes only sense for templates'; CREATE TABLE icinga_service_var ( service_id integer NOT NULL, varname character varying(255) DEFAULT NULL, varvalue text DEFAULT NULL, format enum_property_format, PRIMARY KEY (service_id, varname), CONSTRAINT icinga_service_var_service FOREIGN KEY (service_id) REFERENCES icinga_service (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX service_var_search_idx ON icinga_service_var (varname); CREATE INDEX service_var_service ON icinga_service_var (service_id); CREATE TABLE icinga_host_service ( host_id integer NOT NULL, service_id integer NOT NULL, PRIMARY KEY (host_id, service_id), CONSTRAINT icinga_host_service_host FOREIGN KEY (host_id) REFERENCES icinga_host (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_host_service_service FOREIGN KEY (service_id) REFERENCES icinga_service (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX host_service_host ON icinga_host_service (host_id); CREATE INDEX host_service_service ON icinga_host_service (service_id); CREATE TABLE icinga_hostgroup ( id serial, object_name character varying(255) NOT NULL, display_name character varying(255) DEFAULT NULL, object_type enum_object_type NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX hostgroup_object_name ON icinga_hostgroup (object_name); CREATE INDEX hostgroup_search_idx ON icinga_hostgroup (display_name); -- -- TODO: probably useless CREATE TABLE icinga_hostgroup_inheritance ( hostgroup_id integer NOT NULL, parent_hostgroup_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (hostgroup_id, parent_hostgroup_id), CONSTRAINT icinga_hostgroup_inheritance_hostgroup FOREIGN KEY (hostgroup_id) REFERENCES icinga_hostgroup (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_hostgroup_inheritance_parent_hostgroup FOREIGN KEY (parent_hostgroup_id) REFERENCES icinga_hostgroup (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX hostgroup_inheritance_unique_order ON icinga_hostgroup_inheritance (hostgroup_id, weight); CREATE INDEX hostgroup_inheritance_hostgroup ON icinga_hostgroup_inheritance (hostgroup_id); CREATE INDEX hostgroup_inheritance_hostgroup_parent ON icinga_hostgroup_inheritance (parent_hostgroup_id); CREATE TABLE icinga_servicegroup ( id serial, object_name character varying(255) DEFAULT NULL, display_name character varying(255) DEFAULT NULL, object_type enum_object_type NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX servicegroup_object_name ON icinga_servicegroup (object_name); CREATE INDEX servicegroup_search_idx ON icinga_servicegroup (display_name); CREATE TABLE icinga_servicegroup_inheritance ( servicegroup_id integer NOT NULL, parent_servicegroup_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (servicegroup_id, parent_servicegroup_id), CONSTRAINT icinga_servicegroup_inheritance_servicegroup FOREIGN KEY (servicegroup_id) REFERENCES icinga_servicegroup (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_servicegroup_inheritance_parent_servicegroup FOREIGN KEY (parent_servicegroup_id) REFERENCES icinga_servicegroup (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX servicegroup_inheritance_unique_order ON icinga_servicegroup_inheritance (servicegroup_id, weight); CREATE INDEX servicegroup_inheritance_servicegroup ON icinga_servicegroup_inheritance (servicegroup_id); CREATE INDEX servicegroup_inheritance_servicegroup_parent ON icinga_servicegroup_inheritance (parent_servicegroup_id); CREATE TABLE icinga_servicegroup_service ( servicegroup_id integer NOT NULL, service_id integer NOT NULL, PRIMARY KEY (servicegroup_id, service_id), CONSTRAINT icinga_servicegroup_service_service FOREIGN KEY (service_id) REFERENCES icinga_service (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_servicegroup_service_servicegroup FOREIGN KEY (servicegroup_id) REFERENCES icinga_servicegroup (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX servicegroup_service_service ON icinga_servicegroup_service (service_id); CREATE INDEX servicegroup_service_servicegroup ON icinga_servicegroup_service (servicegroup_id); CREATE TABLE icinga_hostgroup_host ( hostgroup_id integer NOT NULL, host_id integer NOT NULL, PRIMARY KEY (hostgroup_id, host_id), CONSTRAINT icinga_hostgroup_host_host FOREIGN KEY (host_id) REFERENCES icinga_host (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_hostgroup_host_hostgroup FOREIGN KEY (hostgroup_id) REFERENCES icinga_hostgroup (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX hostgroup_host_host ON icinga_hostgroup_host (host_id); CREATE INDEX hostgroup_host_hostgroup ON icinga_hostgroup_host (hostgroup_id); CREATE TABLE icinga_hostgroup_parent ( hostgroup_id integer NOT NULL, parent_hostgroup_id integer NOT NULL, PRIMARY KEY (hostgroup_id, parent_hostgroup_id), CONSTRAINT icinga_hostgroup_parent_hostgroup FOREIGN KEY (hostgroup_id) REFERENCES icinga_hostgroup (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_hostgroup_parent_parent FOREIGN KEY (parent_hostgroup_id) REFERENCES icinga_hostgroup (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX hostgroup_parent_hostgroup ON icinga_hostgroup_parent (hostgroup_id); CREATE INDEX hostgroup_parent_parent ON icinga_hostgroup_parent (parent_hostgroup_id); CREATE TABLE icinga_user ( id serial, object_name character varying(255) DEFAULT NULL, display_name character varying(255) DEFAULT NULL, email character varying(255) DEFAULT NULL, pager character varying(255) DEFAULT NULL, enable_notifications enum_boolean DEFAULT NULL, period_id integer DEFAULT NULL, zone_id integer DEFAULT NULL, object_type enum_object_type NOT NULL, PRIMARY KEY (id), CONSTRAINT icinga_user_zone FOREIGN KEY (zone_id) REFERENCES icinga_zone (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX user_object_name ON icinga_user (object_name, zone_id); CREATE INDEX user_zone ON icinga_user (zone_id); CREATE TABLE icinga_user_inheritance ( user_id integer NOT NULL, parent_user_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (user_id, parent_user_id), CONSTRAINT icinga_user_inheritance_user FOREIGN KEY (user_id) REFERENCES icinga_user (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_user_inheritance_parent_user FOREIGN KEY (parent_user_id) REFERENCES icinga_user (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX user_inheritance_unique_order ON icinga_user_inheritance (user_id, weight); CREATE INDEX user_inheritance_user ON icinga_user_inheritance (user_id); CREATE INDEX user_inheritance_user_parent ON icinga_user_inheritance (parent_user_id); CREATE TABLE icinga_user_filter_state ( user_id integer NOT NULL, state_name enum_state_name NOT NULL, merge_behaviour enum_merge_behaviour NOT NULL DEFAULT 'set', PRIMARY KEY (user_id, state_name), CONSTRAINT icinga_user_filter_state_user FOREIGN KEY (user_id) REFERENCES icinga_user (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX user_filter_state_user ON icinga_user_filter_state (user_id); COMMENT ON COLUMN icinga_user_filter_state.merge_behaviour IS 'set: = [], add: += [], substract: -= []'; CREATE TABLE icinga_user_filter_type ( user_id integer NOT NULL, type_name enum_type_name NOT NULL, merge_behaviour enum_merge_behaviour NOT NULL DEFAULT 'set', PRIMARY KEY (user_id, type_name), CONSTRAINT icinga_user_filter_type_user FOREIGN KEY (user_id) REFERENCES icinga_user (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX user_filter_type_user ON icinga_user_filter_type (user_id); COMMENT ON COLUMN icinga_user_filter_type.merge_behaviour IS 'set: = [], add: += [], substract: -= []'; CREATE TABLE icinga_user_var ( user_id integer NOT NULL, varname character varying(255) DEFAULT NULL, varvalue text DEFAULT NULL, format enum_property_format NOT NULL DEFAULT 'string', PRIMARY KEY (user_id, varname), CONSTRAINT icinga_user_var_user FOREIGN KEY (user_id) REFERENCES icinga_user (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX user_var_search_idx ON icinga_user_var (varname); CREATE INDEX user_var_user ON icinga_user_var (user_id); CREATE TABLE icinga_usergroup ( id serial, object_name character varying(255) NOT NULL, display_name character varying(255) DEFAULT NULL, zone_id integer DEFAULT NULL, object_type enum_object_type NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX usergroup_search_idx ON icinga_usergroup (display_name); CREATE INDEX usergroup_object_name ON icinga_usergroup (object_name, zone_id); CREATE TABLE icinga_usergroup_inheritance ( usergroup_id integer NOT NULL, parent_usergroup_id integer NOT NULL, weight integer DEFAULT NULL, PRIMARY KEY (usergroup_id, parent_usergroup_id), CONSTRAINT icinga_usergroup_inheritance_usergroup FOREIGN KEY (usergroup_id) REFERENCES icinga_usergroup (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_usergroup_inheritance_parent_usergroup FOREIGN KEY (parent_usergroup_id) REFERENCES icinga_usergroup (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE UNIQUE INDEX usergroup_inheritance_unique_order ON icinga_usergroup_inheritance (usergroup_id, weight); CREATE INDEX usergroup_inheritance_usergroup ON icinga_usergroup_inheritance (usergroup_id); CREATE INDEX usergroup_inheritance_usergroup_parent ON icinga_usergroup_inheritance (parent_usergroup_id); CREATE TABLE icinga_usergroup_user ( usergroup_id integer NOT NULL, user_id integer NOT NULL, PRIMARY KEY (usergroup_id, user_id), CONSTRAINT icinga_usergroup_user_user FOREIGN KEY (user_id) REFERENCES icinga_user (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_usergroup_user_usergroup FOREIGN KEY (usergroup_id) REFERENCES icinga_usergroup (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX usergroup_user_user ON icinga_usergroup_user (user_id); CREATE INDEX usergroup_user_usergroup ON icinga_usergroup_user (usergroup_id); CREATE TABLE icinga_usergroup_parent ( usergroup_id integer NOT NULL, parent_usergroup_id integer NOT NULL, PRIMARY KEY (usergroup_id, parent_usergroup_id), CONSTRAINT icinga_usergroup_parent_usergroup FOREIGN KEY (usergroup_id) REFERENCES icinga_usergroup (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT icinga_usergroup_parent_parent FOREIGN KEY (parent_usergroup_id) REFERENCES icinga_usergroup (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX usergroup_parent_usergroup ON icinga_usergroup_parent (usergroup_id); CREATE INDEX usergroup_parent_parent ON icinga_usergroup_parent (parent_usergroup_id); CREATE TABLE import_source ( id serial, source_name character varying(64) NOT NULL, key_column character varying(64) NOT NULL, provider_class character varying(72) NOT NULL, PRIMARY KEY (id) ); CREATE INDEX import_source_search_idx ON import_source (key_column); CREATE TABLE import_source_setting ( source_id integer NOT NULL, setting_name character varying(64) NOT NULL, setting_value text NOT NULL, PRIMARY KEY (source_id, setting_name), CONSTRAINT import_source_settings_source FOREIGN KEY (source_id) REFERENCES import_source (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX import_source_setting_source ON import_source_setting (source_id); CREATE TABLE imported_rowset ( checksum bytea CHECK(LENGTH(checksum) = 20), PRIMARY KEY (checksum) ); CREATE TABLE import_run ( id serial, source_id integer NOT NULL, rowset_checksum bytea CHECK(LENGTH(rowset_checksum) = 20), start_time timestamp with time zone NOT NULL, end_time timestamp with time zone NOT NULL, succeeded enum_boolean DEFAULT NULL, PRIMARY KEY (id), CONSTRAINT import_run_source FOREIGN KEY (source_id) REFERENCES import_source (id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT import_run_rowset FOREIGN KEY (rowset_checksum) REFERENCES imported_rowset (checksum) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX import_run_import_source ON import_run (source_id); CREATE INDEX import_run_rowset ON import_run (rowset_checksum); CREATE TABLE imported_row ( checksum bytea CHECK(LENGTH(checksum) = 20), object_name character varying(255) NOT NULL, PRIMARY KEY (checksum) ); COMMENT ON COLUMN imported_row.checksum IS 'sha1(object_name;property_checksum;...)'; CREATE TABLE imported_rowset_row ( rowset_checksum bytea CHECK(LENGTH(checksum) = 20), row_checksum bytea CHECK(LENGTH(checksum) = 20), PRIMARY KEY (rowset_checksum, row_checksum), CONSTRAINT imported_rowset_row_rowset FOREIGN KEY (rowset_checksum) REFERENCES imported_rowset (checksum) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT imported_rowset_row_row FOREIGN KEY (row_checksum) REFERENCES imported_row (checksum) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX imported_rowset_row_rowset_checksum ON imported_rowset_row (rowset_checksum); CREATE INDEX imported_rowset_row_row_checksum ON imported_rowset_row (row_checksum); CREATE TABLE imported_property ( checksum bytea CHECK(LENGTH(checksum) = 20), property_name character varying(64) NOT NULL, property_value text NOT NULL, format enum_property_format, PRIMARY KEY (checksum) ); CREATE INDEX imported_property_search_idx ON imported_property (property_name); CREATE TABLE imported_row_property ( row_checksum bytea CHECK(LENGTH(row_checksum) = 20), property_checksum bytea CHECK(LENGTH(property_checksum) = 20), PRIMARY KEY (row_checksum, property_checksum), CONSTRAINT imported_row_property_row FOREIGN KEY (row_checksum) REFERENCES imported_row (checksum) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT imported_row_property_property FOREIGN KEY (property_checksum) REFERENCES imported_property (checksum) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX imported_row_property_row_checksum ON imported_row_property (row_checksum); CREATE INDEX imported_row_property_property_checksum ON imported_row_property (property_checksum); CREATE TABLE sync_rule ( id serial, rule_name character varying(255) NOT NULL, object_type enum_sync_rule_object_type NOT NULL, update_policy enum_sync_rule_update_policy NOT NULL, purge_existing enum_boolean NOT NULL DEFAULT 'n', filter_expression text DEFAULT NULL, PRIMARY KEY (id) ); CREATE TABLE sync_property ( id serial, rule_id integer NOT NULL, source_id integer NOT NULL, source_expression character varying(255) NOT NULL, destination_field character varying(64), priority smallint NOT NULL, filter_expression text DEFAULT NULL, merge_policy enum_sync_property_merge_policy NOT NULL, PRIMARY KEY (id), CONSTRAINT sync_property_rule FOREIGN KEY (rule_id) REFERENCES sync_rule (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT sync_property_source FOREIGN KEY (source_id) REFERENCES import_source (id) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE INDEX sync_property_rule ON sync_property (rule_id); CREATE INDEX sync_property_source ON sync_property (source_id); CREATE TABLE import_row_modifier ( id serial, property_id integer NOT NULL, provider_class character varying(72) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE import_row_modifier_setting ( modifier_id integer NOT NULL, setting_name character varying(64) NOT NULL, setting_value text DEFAULT NULL, PRIMARY KEY (modifier_id) ); CREATE TABLE director_datafield_setting ( datafield_id integer NOT NULL, setting_name character varying(64) NOT NULL, setting_value text NOT NULL, PRIMARY KEY (datafield_id, setting_name), CONSTRAINT datafield_id_settings FOREIGN KEY (datafield_id) REFERENCES director_datafield (id) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE INDEX director_datafield_datafield ON director_datafield_setting (datafield_id);