From 29cc29ebda542c100ffb548d976eb88c3e381358 Mon Sep 17 00:00:00 2001 From: Orion Kindel Date: Mon, 17 Jul 2023 14:15:51 -0400 Subject: [PATCH] ./migrations/0728ba9_to_442d4e8.sql --- 0728ba9_to_442d4e8.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 0728ba9_to_442d4e8.sql diff --git a/0728ba9_to_442d4e8.sql b/0728ba9_to_442d4e8.sql new file mode 100644 index 0000000..f674604 --- /dev/null +++ b/0728ba9_to_442d4e8.sql @@ -0,0 +1,9 @@ +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 +); + + +