mirror of
https://github.com/EdiFarcas/Car-Fuel-Tracking-App.git
synced 2026-06-22 07:00:55 +03:00
Latest update
This commit is contained in:
@@ -49,6 +49,30 @@ model MileageEntry {
|
||||
date DateTime @default(now())
|
||||
}
|
||||
|
||||
model BugReport {
|
||||
id String @id @default(cuid())
|
||||
name String?
|
||||
email String?
|
||||
bug String
|
||||
date DateTime @default(now())
|
||||
}
|
||||
|
||||
model ImprovementIdea {
|
||||
id String @id @default(cuid())
|
||||
name String?
|
||||
email String?
|
||||
idea String
|
||||
date DateTime @default(now())
|
||||
}
|
||||
|
||||
model ContactMessage {
|
||||
id String @id @default(cuid())
|
||||
name String?
|
||||
email String?
|
||||
message String
|
||||
date DateTime @default(now())
|
||||
}
|
||||
|
||||
enum FuelType {
|
||||
GASOLINE
|
||||
DIESEL
|
||||
|
||||
Reference in New Issue
Block a user