Skip to content

Commit

Permalink
fix: make privateKey property of Key entity nullable (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldigjo authored Jan 21, 2021
1 parent 4134092 commit aa48ed9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/data-store/src/entities/key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class Key extends BaseEntity {
//@ts-ignore
publicKeyHex: string

@Column()
@Column({ nullable: true })
privateKeyHex?: string

@Column({ type: 'simple-json', nullable: true })
Expand Down

0 comments on commit aa48ed9

Please sign in to comment.