Skip to content

Commit

Permalink
removed expiration date as mandatory field
Browse files Browse the repository at this point in the history
  • Loading branch information
holashchand committed May 17, 2024
1 parent 0f48456 commit 174af0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "VerifiableCredentials" ALTER COLUMN "expirationDate" DROP NOT NULL;
2 changes: 1 addition & 1 deletion services/credentials-service/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ model VerifiableCredentials {
type String[]
issuer String
issuanceDate String
expirationDate String
expirationDate String?
credential_schema String
subject Json
subjectId String
Expand Down

0 comments on commit 174af0e

Please sign in to comment.