mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
19 lines
370 B
Plaintext
19 lines
370 B
Plaintext
model LudusaviEntry {
|
|
name String @id
|
|
steamId String?
|
|
|
|
entries LudusaviPlatformEntry[]
|
|
}
|
|
|
|
model LudusaviPlatformEntry {
|
|
ludusaviEntryName String
|
|
ludusaviEntry LudusaviEntry @relation(fields: [ludusaviEntryName], references: [name])
|
|
|
|
platform Platform
|
|
|
|
files String[]
|
|
registry String[]
|
|
|
|
@@id([ludusaviEntryName, platform])
|
|
}
|