Initial Commit

This commit is contained in:
2024-10-12 14:36:36 +02:00
commit bfc5cbf624
67 changed files with 10860 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
-- Add up migration script here
CREATE TABLE "activation_token" (
"user_id" uuid NOT NULL,
"token" character varying(255) NOT NULL,
"created_at" timestamp DEFAULT CURRENT_TIMESTAMP,
"updated_at" timestamp DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "activation_token_user_id_token" PRIMARY KEY ("user_id", "token")
) WITH (oids = false);