12 lines
287 B
SQL
12 lines
287 B
SQL
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');
|