feat: add AI Prompts section, database model, public pages, and admin CRUD

This commit is contained in:
AyrisAI
2026-07-23 17:38:06 +03:00
parent bd543c3bda
commit bf4e0da112
8 changed files with 762 additions and 7 deletions
+12
View File
@@ -160,3 +160,15 @@ model Setting {
value String @db.Text
updatedAt DateTime @updatedAt
}
model Prompt {
id String @id @default(cuid())
title String
slug String @unique
category String
description String @db.Text
content String @db.Text
tags String[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}