added adsl(timestamp) index
[APKPM.git] / sql / poll.sql
1 create table 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         adsl_ok    int not null
8 );