mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-17 19:13:16 +08:00
12 lines
327 B
Plaintext
12 lines
327 B
Plaintext
CREATE TABLE conditions (
|
|
time BIGINT NOT NULL,
|
|
device_id TEXT NOT NULL,
|
|
temp DOUBLE PRECISION NULL,
|
|
humidity DOUBLE PRECISION NULL
|
|
);
|
|
|
|
CREATE INDEX ON conditions (time DESC NULLS LAST, device_id);
|
|
CREATE INDEX ON conditions (time DESC NULLS LAST, temp);
|
|
|
|
SELECT create_hypertable('"conditions"', 'time', 'device_id');
|