Skip to content

Instantly share code, notes, and snippets.

@pjagielski
Last active February 11, 2019 18:15
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 pjagielski/e03facbb92530a3f1f856380e6073f7d to your computer and use it in GitHub Desktop.
Save pjagielski/e03facbb92530a3f1f856380e6073f7d to your computer and use it in GitHub Desktop.
data class User(
val username: Username,
val password: String,
val email: String
)
object UserTable : Table("users") {
val username = text("username")
val email = text("email")
val password = text("password")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment