Merge branch 'devel' of h1dev:/srv/APKPM/
[APKPM.git] / sql / dslam.sql
1 create table dslam (
2 ip inet not null,
3 username text not null,
4 timestamp timestamp default now(),
5 variant text not null,
6 h hstore
7 );
8
9 -- columns used in where for gnuplot
10 create index dslam_username on dslam(username);
11 create index dslam_timestamp on dslam(timestamp) ;
12 create index dslam_variant on dslam(variant) ;
13