category.prisma 658 B

1234567891011121314151617
  1. model Category {
  2. id String @id @map("_id") @default(auto()) @db.ObjectId
  3. name String // 分类名称
  4. subtitle String? // 副标题
  5. channelId String @db.ObjectId // 渠道 ID
  6. seq Int @default(0) // 排序
  7. status Int // 状态 0: 禁用; 1: 启用
  8. createAt BigInt @default(0) // 创建时间
  9. updateAt BigInt @default(0) // 更新时间
  10. // Relations
  11. channel Channel @relation(fields: [channelId], references: [id])
  12. tags Tag[]
  13. @@map("category")
  14. }