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.
16 lines
303 B
16 lines
303 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE device_info
|
|
(
|
|
id VARCHAR(255) NOT NULL,
|
|
kind VARCHAR(255) NOT NULL,
|
|
data JSON NOT NULL,
|
|
|
|
PRIMARY KEY (id, kind)
|
|
);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE device_info;
|
|
-- +goose StatementEnd
|