Add about page

This commit is contained in:
2026-02-05 15:13:57 +01:00
parent 2971fb298e
commit aa6fa39f6a
10 changed files with 296 additions and 2 deletions

View File

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

View File

@ -524,6 +524,15 @@ model TermsOfService {
version Int @default(autoincrement())
}
model About {
id String @id @default(cuid())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
markdown String
version Int @default(autoincrement())
}
model User {
id String @id
name String