You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
429 B
20 lines
429 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE device_state
|
|
(
|
|
device_id INT NOT NULL,
|
|
hue DOUBLE NOT NULL,
|
|
saturation DOUBLE NOT NULL,
|
|
kelvin INT NOT NULL,
|
|
power TINYINT NOT NULL,
|
|
intensity DOUBLE NOT NULL,
|
|
|
|
PRIMARY KEY (device_id)
|
|
);
|
|
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE device_state;
|
|
-- +goose StatementEnd
|