12 lines
287 B
MySQL
12 lines
287 B
MySQL
|
create table power_measurement_t (
|
||
|
time timestamp without time zone not null,
|
||
|
category text,
|
||
|
deviceid text,
|
||
|
status text,
|
||
|
power double precision,
|
||
|
energy double precision,
|
||
|
errorratio double precision
|
||
|
);
|
||
|
|
||
|
select create_hypertable('power_measurement_t', 'time');
|