github.com/gogriddy/goose@v0.0.0-20180817174216-2c751e0981c8/_example/migrations/001_basics.sql (about) 1 2 -- +goose Up 3 CREATE TABLE post ( 4 id int NOT NULL, 5 title text, 6 body text, 7 PRIMARY KEY(id) 8 ); 9 10 -- +goose Down 11 DROP TABLE post;