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.
15 lines
278 B
15 lines
278 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE device_alias
|
|
(
|
|
id VARCHAR(255) NOT NULL,
|
|
alias VARCHAR(1023) NOT NULL,
|
|
|
|
PRIMARY KEY (id, alias)
|
|
);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE device_alias;
|
|
-- +goose StatementEnd
|