CREATE TABLE icinga_statehistory (
statehistory_id bigserial,
instance_id bigint default 0,
- state_time timestamp with time zone default '1970-01-01 00:00:00+00+00',
+ state_time timestamp with time zone default '1970-01-01 00:00:00+00',
state_time_usec INTEGER default 0,
object_id bigint default 0,
state_change INTEGER default 0,
CREATE TABLE icinga_systemcommands (
systemcommand_id bigserial,
instance_id bigint default 0,
- start_time timestamp with time zone default '1970-01-01 00:00:00+00+00',
+ start_time timestamp with time zone default '1970-01-01 00:00:00+00',
start_time_usec INTEGER default 0,
- end_time timestamp with time zone default '1970-01-01 00:00:00+00+00',
+ end_time timestamp with time zone default '1970-01-01 00:00:00+00',
end_time_usec INTEGER default 0,
command_line TEXT default '',
timeout INTEGER default 0,
endpointstatus_id bigserial,
instance_id bigint default 0,
endpoint_object_id bigint default 0,
- status_update_time timestamp with time zone default '1970-01-01 00:00:00+00+00',
+ status_update_time timestamp with time zone default '1970-01-01 00:00:00+00',
identity text DEFAULT NULL,
node text DEFAULT NULL,
is_connected integer default 0,