summaryrefslogtreecommitdiffstats
path: root/schema/postgresql/t/02-servicestatus.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/postgresql/t/02-servicestatus.sql')
-rw-r--r--schema/postgresql/t/02-servicestatus.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/schema/postgresql/t/02-servicestatus.sql b/schema/postgresql/t/02-servicestatus.sql
new file mode 100644
index 0000000..d94bc0c
--- /dev/null
+++ b/schema/postgresql/t/02-servicestatus.sql
@@ -0,0 +1,7 @@
+SELECT plan(0);
+CREATE TABLE icinga_servicestatus (
+ service_object_id numeric DEFAULT '0'::numeric,
+ status_update_time timestamp WITHOUT time zone,
+ current_state smallint DEFAULT '0'::smallint,
+ state_type smallint DEFAULT '0'::smallint
+);