metadata engine

This commit is contained in:
DecDuck
2024-10-04 13:01:06 +10:00
parent 196f87c219
commit 22ac7f6b15
16 changed files with 604 additions and 12 deletions

View File

@ -61,6 +61,8 @@ model Game {
mBannerId String // linked to objects in s3
mArt String[] // linked to objects in s3
mScreenshots String[] // linked to objects in s3
@@unique([metadataSource, metadataId], name: "metadataKey")
}
model Developer {
@ -74,8 +76,11 @@ model Developer {
mDescription String
mLogo String
mBanner String
mWebsite String
games Game[]
@@unique([metadataSource, metadataId], name: "metadataKey")
}
model Publisher {
@ -89,6 +94,9 @@ model Publisher {
mDescription String
mLogo String
mBanner String
mWebsite String
games Game[]
@@unique([metadataSource, metadataId], name: "metadataKey")
}