Skip to content

Commit

Permalink
fix: add nsfw bool
Browse files Browse the repository at this point in the history
  • Loading branch information
mezotv committed Dec 26, 2024
1 parent d5111e3 commit b15a81b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ model QuestionPack {
name String @db.String
description String @db.String
tags String[]
popular Boolean
popular Boolean
language String @db.String
likes String[]
questions Json[]
status Status @default(pending)
nsfw Boolean @default(false) // Important for the future not used yet
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
Expand Down

0 comments on commit b15a81b

Please sign in to comment.