This commit is contained in:
2025-12-27 11:14:07 +01:00
parent e9176ff73e
commit 13685d100c
51 changed files with 2685 additions and 1 deletions

View File

@ -0,0 +1,10 @@
-- CreateTable
CREATE TABLE "TermsOfService" (
"id" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
"version" SERIAL NOT NULL,
"markdown" TEXT NOT NULL,
CONSTRAINT "TermsOfService_pkey" PRIMARY KEY ("id")
);

View File

@ -354,3 +354,12 @@ model CommissionRequest {
updatedAt DateTime @updatedAt
sortIndex Int @default(0)
}
model TermsOfService {
id String @id @default(cuid())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
version Int @default(autoincrement())
markdown String
}