github.com/gogriddy/goose@v0.0.0-20180817174216-2c751e0981c8/_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;