Currently playing around with prisma, and postgres...
# orm-help
a
Currently playing around with prisma, and postgres. I am wondering why the psql database shows the following:
Copy code
prisma=# \d
Did not find any relations.
I have set up the following types and inserted one object of type `Speaker`:
Copy code
type Speaker {
  id: ID! @unique
  firstname: String!
  lastname: String!
  email: String
}

type Talk {
  id: ID! @unique
  speaker: Speaker!
  description: String
  title: String
}