is there anything here that is known to trigger a ...
# prisma-whats-new
r
is there anything here that is known to trigger a stuck on 'applying changes' ?
Copy code
type Update {
  id: ID! @unique
  createdAt: DateTime!
  updatedAt: DateTime!
  text: String!
  creator: User! @relation(name: "UserUpdates")
}

type User {
  id: ID! @unique
  email: String! @unique
  firstName: String!
  lastName: String!
  profilePicture: String!
  providerId: String!
  updates: [Update!]! @relation(name: "UserUpdates")
}
i
Same things here
Copy code
type File {
  id: ID! @unique
  createdAt: DateTime!
  updatedAt: DateTime!

  title: String!
  text: String!
  user: User! @relation(name: "userFiles")
}

type User {
  id: ID! @unique
  createdAt: DateTime!
  updatedAt: DateTime!

  email: String! @unique
  password: String!
  name: String!
  files: [File!]! @relation(name: "userFiles")
}
r
Were you able to figure it out?