Skip to content
Snippets Groups Projects
Commit 2af0031d authored by GUILLORET SIMON's avatar GUILLORET SIMON
Browse files

fix: re-add omitApi because it doesn't work during jobs

parent 0ecd1009
No related merge requests found
Pipeline #323127 passed with stages
in 1 minute and 27 seconds
......@@ -5,7 +5,8 @@
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init
generator client {
provider = "prisma-client-js"
provider = "prisma-client-js"
previewFeatures = ["omitApi"]
}
datasource db {
......@@ -43,6 +44,13 @@ model Room {
status RoomStatus @default(open)
}
enum GameMode {
default
time_mode
scrum_mode
team_mode
}
enum RoomStatus {
open
in_game
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment