Astro build funktioniert
This commit is contained in:
16
prisma/schema/Unterlage.prisma
Normal file
16
prisma/schema/Unterlage.prisma
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
enum UnterlagenKategorie {
|
||||
Grundriss
|
||||
Sonstiges
|
||||
}
|
||||
|
||||
model Unterlage {
|
||||
id Int @id @default(autoincrement())
|
||||
uid String @unique @default(dbgenerated("'pln-' || gen_random_uuid()"))
|
||||
name String?
|
||||
kategorie String?
|
||||
mime String?
|
||||
|
||||
aufnahme_id Int?
|
||||
aufnahme Aufnahme? @relation(fields: [aufnahme_id], references: [id], onDelete: NoAction, onUpdate: NoAction)
|
||||
}
|
||||
Reference in New Issue
Block a user