This commit is contained in:
2022-10-15 00:38:54 +02:00
parent a2b8483967
commit dab7358e39
4 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
CREATE SCHEMA IF NOT EXISTS migration;
CREATE TABLE IF NOT EXISTS migration.functions
(
filename text PRIMARY KEY,
definition text NOT NULL,
executed_at timestamp DEFAULT now() NOT NULL,
up text NOT NULL,
down text NOT NULL,
version int NOT NULL
);