Lars Ivar Igesund
01/05/2022, 6:51 PMLars Ivar Igesund
01/05/2022, 6:56 PMSimon Stenbæk Madsen
01/08/2022, 8:36 AMERROR: Whoops. Looks like an internal server error. Search your server logs for request ID: eu1:cky5k9iwnm80j0913ooqzwsht
{
"data": {
"addProject": null
},
"errors": [
{
"message": "Whoops. Looks like an internal server error. Search your server logs for request ID: eu1:cky5k9iwnm80j0913ooqzwsht",
"path": [
"addProject"
],
"locations": [
{
"line": 2,
"column": 9
}
],
"requestId": "eu1:cky5k9iwnm80j0913ooqzwsht"
}
],
"status": 200
}
Anyone else experiencing this?tmoney
01/13/2022, 10:59 PMlawjolla
01/17/2022, 4:30 PMtype User {
avatar?: File
}
type File {
url: String
}
However, it looks like that's not allowed in Prisma 2. Prisma 2 wants to see something like...
model User {
avatar: File?
}
model File {
userId: String?
user: User? @relation("UserFile", fields:[userId], references: [id])
}
But I get the error...
The column `File.userId` does not exist in the current database.
The problem is that there's no underlying database structure for that relation and I can't migrate my db because my Prisma 2 schema and migration database are so far out of sync. (I want to get Prisma 2 working and then deal with the migration problem)
Is there any stop gap to push through this? Did I somehow miss this in the migration docs? 😬Lars Ivar Igesund
01/26/2022, 7:43 AMLars Ivar Igesund
01/26/2022, 7:51 AMDouglas Maxton
02/03/2022, 9:52 AMDouglas Maxton
02/03/2022, 9:53 AMLars Ivar Igesund
02/03/2022, 6:47 PMJannik Schmiedl
02/06/2022, 5:06 PMRaywat Grajangduang
02/09/2022, 10:29 AMVladi Stevanovic
Lars Ivar Igesund
02/25/2022, 12:52 PMLars Ivar Igesund
02/25/2022, 12:53 PMLars Ivar Igesund
02/25/2022, 2:16 PMMaciek K
02/27/2022, 6:46 PMLars Ivar Igesund
02/27/2022, 7:40 PMKevin Justal
02/28/2022, 5:20 AMLars Ivar Igesund
02/28/2022, 12:06 PMLars Ivar Igesund
02/28/2022, 12:06 PMKevin Justal
02/28/2022, 3:47 PMLars Ivar Igesund
03/04/2022, 8:55 AMKevin Justal
03/22/2022, 4:39 AMcurl '<https://eu1.prisma.sh/xxxxxx/demo/dev/export>' -H 'Content-Type: application/json' -H 'Authorization: Bearer xxxxxxxxxxx'
But it always redirect me to the playgroundKevin Justal
03/22/2022, 4:39 AMMatt Mueller (Prisma Client PM)
Ali
03/29/2022, 1:28 PMVladi Stevanovic
Kevin Justal
04/18/2022, 7:36 AMPedro Roque
04/28/2022, 11:55 AM