rename davolink table and collect queued and ok
[APKPM.git] / sql / dslam_h.sql
1 -- include hstore
2 \i /usr/share/postgresql/8.4/contrib/hstore.sql
3
4 create table dslam_h (
5 ip inet not null,
6 username text not null,
7 timestamp timestamp default now(),
8 h hstore
9 );
10
11 -- columns used in where for gnuplot
12 create index dslam_h_username on dslam_h(username);
13 create index dslam_h_timestamp on dslam_h(timestamp) ;
14