I'm saving entity like this:
def addUser(user: User) = {
val future = db.run(DBIO.seq(
userQueue += user,
userQueue .result.map(println)
))
Await.result(future, Duration.Inf)
}
(where userQueue is TableQuery) And user do not get new autoincremented ID. How can I get in automaticaly?