dbmate/testdata/db/migrations/20200227231541_test_posts.sql
fcarletti 256f92ad19 Add status command (#120)
Add new command to list applied and pending migrations.

Closes #28
Closes #32
Closes #66
Closes #120
2020-03-15 09:43:36 -07:00

8 lines
107 B
SQL

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