feat(eligibility-check) - add CCA eligibility workflow with new routes and frontend components; enhance patient data processing and eligibility status updates; update insurance provider handling across various workflows

This commit is contained in:
2026-02-25 22:38:33 -05:00
parent 27e6e6a4a0
commit 4cb7ec7e2e
26 changed files with 2893 additions and 346 deletions

View File

@@ -18,10 +18,16 @@ datasource db {
provider = "postgresql"
}
enum UserRole {
ADMIN
USER
}
model User {
id Int @id @default(autoincrement())
username String @unique
password String
role UserRole @default(USER)
patients Patient[]
appointments Appointment[]
staff Staff[]