github.com/amacneil/dbmate@v1.16.3-0.20230225174651-ca89b10d75d7/testdata/db/migrations/20200227231541_test_posts.sql (about)

     1  -- migrate:up
     2  create table posts (
     3    id integer,
     4    name varchar(255)
     5  );
     6  
     7  -- migrate:down
     8  drop table posts;