mirror of
https://github.com/Floriansylvain/PopCorn.git
synced 2026-08-19 11:43:23 +02:00
Refactor general pour ajout d'un flow CI/CD
This commit is contained in:
+11
-11
@@ -10,19 +10,19 @@ datasource db {
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model Groupe{
|
||||
id Int @id @default(autoincrement())
|
||||
model Groupe {
|
||||
id Int @id @default(autoincrement())
|
||||
name String
|
||||
logo String @db.VarChar(255)
|
||||
jeux Jeux []
|
||||
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])
|
||||
|
||||
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])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user