Skip to content

Instantly share code, notes, and snippets.

@charmygarg
Created September 24, 2017 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charmygarg/1a31f6620fd76838c8e04847e3798e86 to your computer and use it in GitHub Desktop.
Save charmygarg/1a31f6620fd76838c8e04847e3798e86 to your computer and use it in GitHub Desktop.
def save(user: User): Future[ResultSet] = {
insert
.value(_.id, user.id)
.value(_.name, user.name)
.value(_.email, user.email)
.future()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment