initial schema for data import from rtl_433 json
[rtl433-sensors] / create.sql
1 create table rtl433 (
2         time timestamp without time zone,
3         model text,
4         id integer not null,
5         json jsonb,
6         primary key(time,id)
7 );
8
9