summaryrefslogtreecommitdiffstats
path: root/schema/mysql-legacy-changes/upgrade_20.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/mysql-legacy-changes/upgrade_20.sql')
-rw-r--r--schema/mysql-legacy-changes/upgrade_20.sql17
1 files changed, 17 insertions, 0 deletions
diff --git a/schema/mysql-legacy-changes/upgrade_20.sql b/schema/mysql-legacy-changes/upgrade_20.sql
new file mode 100644
index 0000000..91a86a2
--- /dev/null
+++ b/schema/mysql-legacy-changes/upgrade_20.sql
@@ -0,0 +1,17 @@
+CREATE TABLE icinga_endpoint_inheritance (
+ endpoint_id INT(10) UNSIGNED NOT NULL,
+ parent_endpoint_id INT(10) UNSIGNED NOT NULL,
+ weight MEDIUMINT UNSIGNED DEFAULT NULL,
+ PRIMARY KEY (endpoint_id, parent_endpoint_id),
+ UNIQUE KEY unique_order (endpoint_id, weight),
+ CONSTRAINT icinga_endpoint_inheritance_endpoint
+ FOREIGN KEY endpoint (endpoint_id)
+ REFERENCES icinga_endpoint (id)
+ ON DELETE CASCADE
+ ON UPDATE CASCADE,
+ CONSTRAINT icinga_endpoint_inheritance_parent_endpoint
+ FOREIGN KEY endpoint (parent_endpoint_id)
+ REFERENCES icinga_endpoint (id)
+ ON DELETE RESTRICT
+ ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;