Skip to content

Commit

Permalink
IpAddress
Browse files Browse the repository at this point in the history
  • Loading branch information
bskjon committed Sep 8, 2024
1 parent 58652a5 commit c1ae6d2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ object delegatedAuthenticationTable: IntIdTable() {
val permitted: Column<Boolean> = bool("permitted").default(false)
val consumed: Column<Boolean> = bool("consumed").default(false)
val method = enumerationByName("method", 3, AuthMethod::class) // Brukt metode (PIN eller QR)
val ipaddress: Column<String?> = varchar("ipaddress", 39).nullable()

init {
uniqueIndex(pin)
Expand Down

0 comments on commit c1ae6d2

Please sign in to comment.