13 lines
200 B
MySQL
13 lines
200 B
MySQL
|
-- migrate:up
|
||
|
create table if not exists migrations (
|
||
|
id integer primary key
|
||
|
);
|
||
|
|
||
|
insert into schema_migrations(version)
|
||
|
select id
|
||
|
from migrations;
|
||
|
|
||
|
drop table if exists migrations;
|
||
|
|
||
|
-- migrate:down
|