Skip to content

Commit

Permalink
Alphanumeric
Browse files Browse the repository at this point in the history
  • Loading branch information
bskjon committed Sep 4, 2024
1 parent 373d673 commit 78891da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import java.time.Duration
import java.time.LocalDateTime

object delegatedAuthenticationTable: IntIdTable() {
val pin: Column<Int> = integer("pin")
val pin: Column<String> = varchar("pin", 8)
val requesterId: Column<String> = char("requesterId", 64)
val created: Column<LocalDateTime> = datetime("created").defaultExpression(CurrentDateTime)
val expires: Column<LocalDateTime> = datetime("expires").clientDefault { LocalDateTime.now().plusMinutes(15) }
Expand Down

0 comments on commit 78891da

Please sign in to comment.