Skip to content

Instantly share code, notes, and snippets.

@aqua30
Created September 3, 2022 12:52
Show Gist options
  • Save aqua30/c7f17748c71e7d99fe94fba9bbb374be to your computer and use it in GitHub Desktop.
Save aqua30/c7f17748c71e7d99fe94fba9bbb374be to your computer and use it in GitHub Desktop.
object UserTable: Table<Nothing>(TABLE_USER_DETAIL) {
val id = int("id").primaryKey()
val first_name = varchar("first_name")
val last_name = varchar("last_name")
val age = int("age")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment