19 lines
700 B
Plaintext
19 lines
700 B
Plaintext
model OnboardingRequest {
|
|
id String @id @db.Uuid
|
|
fullName String @map("full_name")
|
|
email String
|
|
otpHash String @map("otp_hash")
|
|
otpExpiresAt DateTime @map("otp_expires_at")
|
|
otpAttempts Int @default(0) @map("otp_attempts")
|
|
otpLastSentAt DateTime @map("otp_last_sent_at")
|
|
otpResendCount Int @default(0) @map("otp_resend_count")
|
|
emailVerifiedAt DateTime? @map("email_verified_at")
|
|
completedAt DateTime? @map("completed_at")
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
updatedAt DateTime @updatedAt @map("updated_at")
|
|
|
|
@@index([email])
|
|
@@index([otpExpiresAt])
|
|
@@map("onboarding_requests")
|
|
}
|