github.com/CloudCom/goose@v0.0.0-20151110184009-e03c3249c21b/_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;