split db schema

This commit is contained in:
toni
2026-03-19 22:12:55 +01:00
parent 4ac4be0368
commit 996e74c742
10 changed files with 72 additions and 80 deletions
@@ -0,0 +1,7 @@
model FoundEventAttachments {
id String @id @default(dbgenerated("uuidv7()")) @db.Uuid
title String @db.VarChar
url String @db.VarChar
event FoundEvents @relation(fields: [eventId], references: [id])
eventId String @db.Uuid
}