10 lines
208 B
SQL
10 lines
208 B
SQL
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
|
|
);
|
|
|
|
|
|
|