I have a Play-based application using PostgreSQL and Slick. I established a connection with the database (I've successfully generated the schema automatically).
I try to insert a row in a table:
val userdb = TableQuery[Userprofiles]
val insertion = userdb += (1, "firstname", "lastname", "address");
I got two compiler errors:
How I can solve the problem?