update esthétique

This commit is contained in:
gpatruno
2026-07-08 13:28:51 +02:00
parent e45e9f154e
commit cc4412d151
14 changed files with 663 additions and 7 deletions
+25
View File
@@ -103,3 +103,28 @@ model TruckEventRecurrence {
@@index([dayOfWeek])
}
/** Métadonnées des avis Google (note globale, lien Maps). Une seule ligne (id = default). */
model GoogleReviewsMeta {
id String @id @default("default")
placeId String
rating Float?
reviewCount Int?
googleMapsUri String
syncedAt DateTime @updatedAt
}
/** Avis Google Maps synchronisés depuis lAPI Places. */
model GoogleReview {
id String @id
authorName String
authorUri String?
authorPhotoUri String?
rating Float
text String
relativeTime String @default("")
googleMapsUri String?
sortOrder Int @default(0)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}