diff options
Diffstat (limited to 'create/mysql/schema.sql')
-rw-r--r-- | create/mysql/schema.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/create/mysql/schema.sql b/create/mysql/schema.sql index ee76195e..b074351f 100644 --- a/create/mysql/schema.sql +++ b/create/mysql/schema.sql @@ -626,6 +626,19 @@ CREATE TABLE escalations ( ) type=InnoDB; -- +-- Table structure for table 'escalation_rules' +-- + +CREATE TABLE escalation_rules ( + ruleid int(4) NOT NULL auto_increment, + escalationid int(4) DEFAULT '0' NOT NULL, + level int(4) DEFAULT '0' NOT NULL, + actiontype int(4) DEFAULT '0' NOT NULL, + PRIMARY KEY (ruleid), + KEY (escalationid) +) type=InnoDB; + +-- -- Table structure for table 'hosts_templates' -- |