10 lines
208 B
MySQL
10 lines
208 B
MySQL
|
create table "public"."migration" (
|
||
|
"from_revision" text not null,
|
||
|
"to_revision" text not null,
|
||
|
"performed_on" timestamp without time zone not null default now(),
|
||
|
"script" text not null
|
||
|
);
|
||
|
|
||
|
|
||
|
|