Skip to content

Commit

Permalink
fix: set wallet credential format column default value
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeplotean committed Aug 7, 2024
1 parent 10f01b4 commit 7fe2cbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object WalletCredentials : Table("credentials") {

val deletedOn = timestamp("deleted_on").nullable().default(null)
val pending = bool("pending").default(false)
val format = varchar("format", 32)
val format = varchar("format", 32).default(CredentialFormat.jwt_vc_json.value)

override val primaryKey = PrimaryKey(wallet, id)
}
Expand Down

0 comments on commit 7fe2cbf

Please sign in to comment.