db/schema/0001_migrations.sql

9 lines
273 B
MySQL
Raw Normal View History

create table public.migration
( from_revision text not null
, to_revision text not null
, performed_on timestamp not null default now()
, script text not null
);
insert into migration (from_revision, to_revision, script) values ('empty', 'empty', '');