mirror of
https://github.com/Fayorg/calendrier-avant.git
synced 2026-05-27 17:18:38 +02:00
fix: duplicated entry (testOf in Users and Test)
This commit is contained in:
@@ -9,15 +9,14 @@ generator client {
|
||||
}
|
||||
|
||||
model Users {
|
||||
id Int @id @default(autoincrement())
|
||||
key String @unique
|
||||
id Int @id @default(autoincrement())
|
||||
key String @unique
|
||||
grades Grade[]
|
||||
firstName String
|
||||
lastName String
|
||||
testOn DateTime? @db.Date
|
||||
isTeacher Boolean @default(false)
|
||||
isTeacher Boolean @default(false)
|
||||
test Test?
|
||||
createdAt DateTime @default(now())
|
||||
createdAt DateTime @default(now())
|
||||
}
|
||||
|
||||
model Test {
|
||||
|
||||
Reference in New Issue
Block a user