mirror of
https://github.com/Floriansylvain/space-game-api.git
synced 2026-08-19 19:53:25 +02:00
Initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
generator dblm {
|
||||
provider = "prisma-dbml-generator"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "sqlite"
|
||||
url = "file:./sqlite.db"
|
||||
}
|
||||
|
||||
model Score {
|
||||
id Int @id @default(autoincrement())
|
||||
nickname String
|
||||
score Int
|
||||
position Int
|
||||
}
|
||||
Reference in New Issue
Block a user