mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-12 16:10:03 +01:00
9 lines
107 B
MySQL
9 lines
107 B
MySQL
|
|
-- migrate:up
|
||
|
|
create table posts (
|
||
|
|
id integer,
|
||
|
|
name varchar(255)
|
||
|
|
);
|
||
|
|
|
||
|
|
-- migrate:down
|
||
|
|
drop table posts;
|