diff options
Diffstat (limited to 'create/postgresql/schema.sql')
| -rw-r--r-- | create/postgresql/schema.sql | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 80d2489b..10063400 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -634,6 +634,26 @@ CREATE TABLE escalations ( CREATE UNIQUE INDEX escalations_name on escalations (name); -- +-- Table structure for table 'escalation_log' +-- + +CREATE TABLE escalation_log ( + escalationlogid serial, + triggerid int4 DEFAULT '0' NOT NULL, + alarmid int4 DEFAULT '0' NOT NULL, + escalationid int4 DEFAULT '0' NOT NULL, + actiontype int4 DEFAULT '0' NOT NULL, + level int4 DEFAULT '0' NOT NULL, + adminlevel int4 DEFAULT '0' NOT NULL, + nextcheck int4 DEFAULT '0' NOT NULL, + status int4 DEFAULT '0' NOT NULL, + PRIMARY KEY (escalationlogid) +); + +CREATE INDEX escalations_log_alarmid_escalationid on escalations_log (alarmid,escalationid); +CREATE INDEX escalations_log_triggerid on escalations_log (triggerid); + +-- -- Table structure for table 'escalation_rules' -- |
