github.com/iasthc/atlas/cmd/atlas@v0.0.0-20230523071841-73246df3f88d/internal/cmdapi/testdata/import/flyway/B2__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  
    10  INSERT INTO post (title, created_at) VALUES (
    11  'This is
    12  my multiline
    13  
    14  value', NOW());