haf
09/11/2019, 8:23 AMRoss O'Brien
09/11/2019, 8:58 AMJidé
09/11/2019, 1:35 PMWahib Abdou
09/11/2019, 5:05 PMrock-n-node
09/11/2019, 6:32 PMIgor Vuleta
09/12/2019, 7:09 AMUsman Rajab
09/12/2019, 11:28 AMUsman Rajab
09/12/2019, 11:28 AMcpd
09/12/2019, 11:31 AMcpd
09/12/2019, 11:40 AMUsman Rajab
09/12/2019, 11:40 AMcpd
09/12/2019, 11:45 AMMaciek K
09/12/2019, 11:56 AMShoyad
09/12/2019, 8:10 PMShoyad
09/12/2019, 8:10 PMShoyad
09/12/2019, 8:10 PMShoyad
09/12/2019, 8:10 PMJaakko P
09/13/2019, 9:23 AMmigrations:false
Jaakko P
09/13/2019, 9:24 AMcode: Int! @db("operator_uic_code")
tries to create a column operator_uic_code
to my existing database which is something I do not want. I'm trying to tell Prisma that field code
is found from database column operator_uic_code
Fran Dios
09/13/2019, 11:37 AMjoar
09/13/2019, 1:28 PMjoar
09/13/2019, 1:28 PMJidé
09/13/2019, 2:12 PMProject
✖ Could not find the table for the model `Project` in the database.
✖ Could not find the column for the inline relation field `favoriteThumbPreset` in the database.
Cue
✖ The underlying column for the field `validation` has an incompatible type. The field has type `Enum` and the column has type `String`.
which does not make sense since the database is empty, and I triple check the endpoint, and prisma info lists the correct endpoint. Any idea ?Jidé
09/13/2019, 2:13 PMarun singh
09/13/2019, 2:30 PMdeactivateduser
09/13/2019, 2:56 PMdeactivateduser
09/13/2019, 2:56 PMbruce
09/13/2019, 3:00 PMDinnall
09/13/2019, 4:39 PMErrors:
User
:heavy_multiplication_x: Valid values for the strategy argument of `@scalarList` are: RELATION.
Here is my *datamodel.prisma * set up
enum Permission {
ADMIN
USER
GROUPCREATE
GROUPUPDATE
GROUPDELETE
PERMISSIONUPDATE
}
type User {
id: ID! @id
first_Name: String!
last_Name: String!
email: String! @unique
password: String!
resetToken: String
resetTokenExpiry: Float
createdGroups: [Group]! @relation(name:"CreatedGroupsBy")
groups: [Group]! @relation(name:"JoinedGroups")
user_violations: Int
permissions: [Permission]
createdAt: DateTime! @createdAt
}
type Group {
id: ID! @id
title: String
author: User! @relation(name: "CreatedGroupsBy")
members: [User]! @relation(name: "JoinedGroups")
draw_amount: Int!
createdAt: DateTime
}
jregistr
09/13/2019, 6:18 PM