diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 9efbd82..bcb105f 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -1,6 +1,3 @@ -// This is your Prisma schema file, -// learn more about it in the docs: https://pris.ly/d/prisma-schema - generator client { provider = "prisma-client-js" } @@ -26,6 +23,6 @@ model Activity { name String description String url String - category Category @relation(fields: [categoryId], references: [id]) categoryId Int + category Category @relation(fields: [categoryId], references: [id]) }