Last active
February 11, 2019 18:15
-
-
Save pjagielski/e03facbb92530a3f1f856380e6073f7d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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