github.com/iasthc/atlas/cmd/atlas@v0.0.0-20230523071841-73246df3f88d/internal/cmdapi/testdata/import/dbmate_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  /*
     9   Multiline comment ...
    10   */
    11  ALTER TABLE post ADD created_at TIMESTAMP NOT NULL;
    12  -- Normal comment
    13  -- With a second line
    14  INSERT INTO post (title) VALUES (
    15  'This is
    16  my multiline
    17  
    18  value');