github.com/CloudCom/goose@v0.0.0-20151110184009-e03c3249c21b/_example/migrations/002_next.sql (about) 1 2 -- +goose Up 3 CREATE TABLE fancier_post ( 4 id int NOT NULL, 5 title text, 6 body text, 7 created_on timestamp without time zone, 8 PRIMARY KEY(id) 9 ); 10 11 -- +goose Down 12 DROP TABLE fancier_post;