github.com/iasthc/atlas/cmd/atlas@v0.0.0-20230523071841-73246df3f88d/internal/cmdapi/testdata/import/liquibase_gold/1_initial.sql (about)

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