added required field to manufacturers

This commit is contained in:
Brandon Egger
2023-03-29 00:05:42 -05:00
parent 088f7c3540
commit 54eff320bf
3 changed files with 26 additions and 7 deletions

View File

@ -53,12 +53,17 @@ type PlatformLink {
link String
}
type Manufacturer {
name String
required Boolean
}
model AuditoryResource {
id String @id @default(auto()) @map("_id") @db.ObjectId
icon String
name String
description String
manufacturer String
manufacturer Manufacturer?
ages RangeInput
skills Skill[]
skill_levels SkillLevel[]