some better auth stuff

This commit is contained in:
2025-09-09 23:49:42 +02:00
parent ced8dbf799
commit ec67142907
10 changed files with 558 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
-- CreateTable
CREATE TABLE "public"."Test" (
"id" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
CONSTRAINT "Test_pkey" PRIMARY KEY ("id")
);