stayby-admin-nest/prisma/schema.prisma

61 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-09-22 20:50:28 +08:00
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "mongodb"
url = env("DATABASE_URL")
}
// 系统人设
model SystemCharter {
id String @id @default(auto()) @map("_id") @db.ObjectId
// 角色名称
roleName String
// 角色描述
roleSetting String?
// 角色简介
prologue String
// 开场白
intro String
// 对话 json格式
roleLines String?
// 照片
photo String?
// 背景
bg String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
2024-12-02 20:12:22 +08:00
// 音色id
voiceId String?
// 音色名称
voiceName String?
// 原始音频
originAudioUrl String?
// 克隆音频
cloneAfterAudioUrl String?
// 是否激活
activate Boolean @default(false)
}
// 任务队列
model TaskQueue {
id String @id @default(auto()) @map("_id") @db.ObjectId
// 任务类型
type String
// 任务数据
data String
// 任务状态: pending/processing/completed/failed
status String
// 失败原因
error String?
// 重试次数
attempts Int @default(0)
// 最大重试次数
maxAttempts Int @default(3)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
2024-09-22 20:50:28 +08:00
}