12 lines
200 B
SQL
12 lines
200 B
SQL
-- 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
|