Files
psp_api/prisma/schema/admin/auth.prisma
T

14 lines
370 B
Plaintext
Raw Normal View History

2026-03-16 00:33:40 +03:30
model Account {
2026-05-07 20:30:24 +03:30
id String @id @default(ulid())
username String @unique
password String
status AccountStatus
type AccountType
2026-03-16 00:33:40 +03:30
admin_account AdminAccount?
consumer_account ConsumerAccount?
2026-05-07 20:30:24 +03:30
partner_account PartnerAccount?
provider_account ProviderAccount?
2026-03-16 00:33:40 +03:30
@@map("accounts")
}