Skip to content

Commit

Permalink
fix: Big value handling (#167)
Browse files Browse the repository at this point in the history
Some claims are very big so a bigger field is needed.
BREAKING CHANGE: database schema change required to accept large claims
  • Loading branch information
ajunge authored May 29, 2020
1 parent 9897202 commit 39a76b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/daf-core/src/entities/claim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class Claim extends BaseEntity {
@Column()
type: string

@Column()
@Column("text")
value: string

@Column()
Expand Down

0 comments on commit 39a76b6

Please sign in to comment.