dbmate/testdata/db/migrations/20200227231541_test_posts.sql

9 lines
107 B
MySQL
Raw Permalink Normal View History

-- migrate:up
create table posts (
id integer,
name varchar(255)
);
-- migrate:down
drop table posts;