github.com/iasthc/atlas/cmd/atlas@v0.0.0-20230523071841-73246df3f88d/internal/cmdapi/testdata/import/goose/1_initial.sql (about) 1 -- +goose Up 2 CREATE TABLE post 3 ( 4 id int NOT NULL, 5 title text, 6 body text, 7 PRIMARY KEY (id) 8 ); 9 10 ALTER TABLE post ADD created_at TIMESTAMP NOT NULL; 11 12 INSERT INTO post (title) VALUES ( 13 'This is 14 my multiline 15 16 value'); 17 18 -- +goose Down 19 DROP TABLE post;