mirror of
https://github.com/Floriansylvain/PopCorn.git
synced 2026-08-19 11:43:23 +02:00
29 lines
567 B
Plaintext
29 lines
567 B
Plaintext
// This is your Prisma schema file,
|
|
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "mysql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model Groupe{
|
|
id Int @id @default(autoincrement())
|
|
name String
|
|
logo String @db.VarChar(255)
|
|
jeux Jeux []
|
|
}
|
|
model Jeux{
|
|
id Int @id @default(autoincrement())
|
|
Title String
|
|
Description String
|
|
Picture String @db.VarChar(255)
|
|
lien String
|
|
groupe_id Int
|
|
groupe Groupe @relation(fields: [groupe_id], references: [id])
|
|
|
|
}
|