Skip to content

Commit 939b780

Browse files
committed
added credentialConfigurationId and credentialIssuerIdentifier as metadata values on the credential entity. they can be utilized later for fetching more instances of a specific credential
1 parent dd53c46 commit 939b780

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/entities/VerifiableCredential.entity.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ export class VerifiableCredentialEntity {
2222

2323
@Column({ type: "varchar", nullable: false })
2424
format: string;
25+
26+
@Column({ type: "varchar", nullable: false, default: "" })
27+
credentialConfigurationId: string = "";
28+
29+
@Column({ type: "varchar", nullable: false, default: "" })
30+
credentialIssuerIdentifier: string = "";
2531
}
2632

2733

0 commit comments

Comments
 (0)