github.com/iasthc/atlas/cmd/atlas@v0.0.0-20230523071841-73246df3f88d/internal/cmdapi/testdata/import/flyway_gold/2_baseline.sql (about)

     1  CREATE TABLE post
     2  (
     3      id    int NOT NULL,
     4      title text,
     5      body  text,
     6      created_at TIMESTAMP NOT NULL
     7      PRIMARY KEY (id)
     8  );
     9  INSERT INTO post (title, created_at) VALUES (
    10  'This is
    11  my multiline
    12  
    13  value', NOW());