Skip to content

Commit

Permalink
Missing prisma file (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecErasmus authored Apr 24, 2024
1 parent 80d5d9e commit 6c8a8c0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cred-manager/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,9 @@ model Attestation {
user User @relation(fields: [user_id], references: [id], onDelete: Cascade)
created_at DateTime @default(now()) @db.Timestamp(6)
}

model AnonymousUsers {
id String @id @default(uuid())
email String
created_at DateTime @default(now()) @db.Timestamp(6)
}

0 comments on commit 6c8a8c0

Please sign in to comment.