1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
CREATE TABLE ratelimit (
name text,
value real,
rmax real,
rmin real
);
CREATE TABLE readings (
date integer,
name text,
value real
);
CREATE TABLE replog (
date timestamp with time zone,
message text
);
CREATE TABLE station (
name text,
stnlat real,
stnlong real,
altitude real,
location text,
software text,
url text,
wu_user text,
wu_pass text,
rfact real,
cwop_user text,
cwop_pass text
);
CREATE TABLE w1sensors (
device text,
type text,
abbrv1 text,
name1 text,
units1 text,
abbrv2 text,
name2 text,
units2 text,
params text
);
|