diff --git a/data/at_resources.xlsx b/data/at_resources.xlsx new file mode 100644 index 0000000..485fdbe Binary files /dev/null and b/data/at_resources.xlsx differ diff --git a/prisma/schema.prisma b/prisma/schema.prisma index de3158b..2c81c0a 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -43,16 +43,17 @@ type RangeInput { } model AuditoryResource { - id String @id @default(auto()) @map("_id") @db.ObjectId - icon String - name String - description String - manufacturer String - platform Platform - ages RangeInput - skills Skill[] - skill_level SkillLevel - cost Float + id String @id @default(auto()) @map("_id") @db.ObjectId + icon String + name String + description String + manufacturer String + platforms Platform[] + ages RangeInput + skills Skill[] + skill_levels SkillLevel[] + cost Float + download_link String } // Necessary for Next auth