Skip to content

Commit

Permalink
Merge pull request #681 from walt-id/fix/wallet-credential-format-def…
Browse files Browse the repository at this point in the history
…ault-value

hotfix: set wallet credential format column default value
  • Loading branch information
mikeplotean authored Aug 14, 2024
2 parents f907b87 + e4f688e commit e1c7454
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,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 e1c7454

Please sign in to comment.