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.
 
 
 
 

18 lines
399 B

-- +goose Up
-- +goose StatementBegin
CREATE TABLE bridge
(
id INT NOT NULL AUTO_INCREMENT,
name VARCHAR(255) NOT NULL,
driver VARCHAR(255) NOT NULL,
address VARCHAR(255) NOT NULL,
token VARCHAR(255) NOT NULL,
PRIMARY KEY (id)
);
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP TABLE bridge;
-- +goose StatementEnd