implemented other repos, services, objects ...
This commit is contained in:
@@ -26,7 +26,7 @@ model ProjectDbo {
|
||||
name String
|
||||
description String?
|
||||
clientId String?
|
||||
tasks TaskDbo[] // Beziehung zu Aufgaben
|
||||
tasks ProjectTaskDbo[] // Beziehung zu Aufgaben
|
||||
timeEntries TimeEntryDbo[] // Beziehung zu Zeiteinträgen
|
||||
user UserDbo @relation(fields: [userId], references: [id])
|
||||
userId String
|
||||
@@ -49,7 +49,7 @@ model TimeEntryDbo {
|
||||
}
|
||||
|
||||
// Task Model (optional)
|
||||
model TaskDbo {
|
||||
model ProjectTaskDbo {
|
||||
id String @id @default(uuid())
|
||||
name String
|
||||
description String?
|
||||
|
||||
Reference in New Issue
Block a user