gadl/migrations/0_init.sql

13 lines
200 B
MySQL
Raw Permalink Normal View History

2023-12-24 22:10:01 +09:00
-- 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