9 lines
273 B
MySQL
9 lines
273 B
MySQL
|
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', '');
|