Merge branch 'devel' of h1dev:/srv/APKPM/
[APKPM.git] / sql / cpe_poll.sql
1 create table cpe_poll (
2         start  timestamp not null,
3         finish timestamp not null,
4         queued     int not null,
5         ping_ok    int not null,
6         ping_error int not null,
7         davolink_queued int not null,
8         davolink_ok int not null,
9         davolink_error int not null,
10         easygateway_queued int not null,
11         easygateway_ok int not null,
12         easygateway_error int not null
13 );
14
15 create index cpe_poll_start on cpe_poll(start);