I have the following schema definition: ```model...
# orm-help
v
I have the following schema definition:
Copy code
model Category {
  id          Int       @id @default(autoincrement())
  name        String    @db.VarChar(255)
  description String?   @db.Text
  active      Boolean   @default(true)
  Product     Product[]
}

model Product {
  id          Int      @id @default(autoincrement())
  createdAt   DateTime @default(now())
  updatedAt   DateTime @updatedAt
  name        String   @db.VarChar(255)
  brand       String   @db.VarChar(255)
  offerPrice  Int      @db.Int
  description String?  @db.Text
  category    Category @relation(fields: [categoryId], references: [id])
  categoryId  Int
}
But I don’t see
category
attached to the generated type