quiet
[rtl433-sensors] / stat.sql
1 drop table stat;
2 create table stat (
3         _id serial,
4         time timestamp without time zone default now(),
5         topic text not null,
6         value text
7 );
8