- Timestamp:
- 02/26/25 14:27:26 (6 weeks ago)
- Branches:
- main
- Children:
- 3c5302a
- Parents:
- 057453c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
prisma/schema.prisma
r057453c r299af01 10 10 model Client { 11 11 id String @id @default(uuid()) 12 companyId String? // Optional companyidentifier12 tenantId String // Tenant identifier 13 13 name String 14 14 email String @unique … … 21 21 status CustomerStatus @default(active) 22 22 23 tenant Tenant @relation(fields: [tenantId], references: [id], onDelete: Cascade) 23 24 invoicesReceived Invoice[] @relation("InvoiceTo") 24 25 } … … 78 79 name String 79 80 email String @unique 80 address Json // Holds {street: string, city?: string, country: string, state?: string, zip: string}81 bankAccounts Json? // Holds {eur?: {accountNumber?, bicSwift?, iban?, routingNumber?}, usd?: {...}}81 address Json 82 bankAccounts Json? 82 83 logoUrl String? 83 84 phoneNumber String? … … 85 86 companyNumber String? 86 87 representative String 87 lastInvoiceNumber String 88 lastInvoiceNumber String @default("0") 88 89 createdAt DateTime @default(now()) 89 90 updatedAt DateTime @updatedAt … … 91 92 services Service[] 92 93 employees Employee[] 94 clients Client[] // Add the relation to clients 93 95 } 94 96
Note:
See TracChangeset
for help on using the changeset viewer.