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-07 11:25:11 +03:30
|
|
|
|
2026-03-16 00:33:40 +03:30
|
|
|
@@map("accounts")
|
2026-03-07 11:25:11 +03:30
|
|
|
}
|