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