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