added adsl(timestamp) index
[APKPM.git] / sql / adsl.sql
1 create table adsl (
2 ip inet not null,
3 username text not null,
4 timestamp timestamp default now(),
5 SNRTX float,
6 ATTNTX float,
7 MAXTX integer,
8 PWRTX float,
9 PWRRX float,
10 TX integer,
11 RX integer,
12 MAXRX integer,
13 ATTNRX float,
14 SNRRX float
15 );
16
17 -- columns used in where for gnuplot
18 create index adsl_username on adsl(username);
19 create index adsl_timestamp on adsl(timestamp) ;
20