feat(prisma, src): add slug field to Prompt model and implement slug generation for prompts without slugs

This commit is contained in:
Fatih Kadir Akın
2025-12-16 14:00:08 +03:00
parent 0091df48db
commit 1bb8f90888
20 changed files with 506 additions and 17 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "prompts" ADD COLUMN "slug" TEXT;

View File

@@ -76,6 +76,7 @@ model VerificationToken {
model Prompt {
id String @id @default(cuid())
title String
slug String?
description String?
content String
type PromptType @default(TEXT)