feat: profile about me sections

This commit is contained in:
trafficlunar 2025-11-10 19:20:33 +00:00
parent df1cdc67e9
commit 46a168b56c
10 changed files with 202 additions and 90 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "users" ADD COLUMN "description" VARCHAR(256);

View file

@ -14,6 +14,7 @@ model User {
email String @unique
emailVerified DateTime?
image String?
description String? @db.VarChar(256)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt