create table status
(
    id    serial constraint status_pk primary key,
    host  inet                                not null,
    start timestamp default current_timestamp not null,
    "end" timestamp default current_timestamp not null
);