Hi there, I when i try to update my datamodel.pri...
# orm-help
d
Hi there, I when i try to update my datamodel.prisma i keep receiving this message. ANY HELP IS APPRECIATED
Copy code
Errors:

  User
    :heavy_multiplication_x: Valid values for the strategy argument of `@scalarList` are: RELATION.
Here is my *datamodel.prisma * set up
Copy code
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
}