Guest User

Untitled

a guest
Feb 12th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. data class User(
  2. val username: Username,
  3. val password: String,
  4. val email: String
  5. )
  6.  
  7. object UserTable : Table("users") {
  8. val username = text("username")
  9. val email = text("email")
  10. val password = text("password")
  11. }
Add Comment
Please, Sign In to add comment