1
0
mirror of https://github.com/Fayorg/calendrier-avant.git synced 2026-05-27 17:18:38 +02:00

fix: change testOf from DateTime to Date

This commit is contained in:
2023-12-05 22:13:10 +01:00
parent d9e1661a8f
commit cd681b095f

View File

@@ -23,7 +23,7 @@ model Test {
id Int @id @default(autoincrement())
testOf Users @relation(fields: [testOfId], references: [id])
testOfId Int @unique
testOn DateTime @default(now())
testOn DateTime @db.Date
createdAt DateTime @default(now())
}