Ignore:
Timestamp:
02/26/25 14:27:26 (6 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
3c5302a
Parents:
057453c
Message:

chore

File:
1 edited

Legend:

Unmodified
Added
Removed
  • prisma/schema.prisma

    r057453c r299af01  
    1010model Client {
    1111  id              String        @id @default(uuid())
    12   companyId       String?       // Optional company identifier
     12  tenantId        String       // Tenant identifier
    1313  name            String
    1414  email           String        @unique
     
    2121  status          CustomerStatus @default(active)
    2222
     23  tenant          Tenant        @relation(fields: [tenantId], references: [id], onDelete: Cascade)
    2324  invoicesReceived Invoice[] @relation("InvoiceTo")
    2425}
     
    7879  name              String
    7980  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?     
    8283  logoUrl           String?
    8384  phoneNumber       String?
     
    8586  companyNumber     String?
    8687  representative    String
    87   lastInvoiceNumber String       @default("0")
     88  lastInvoiceNumber String    @default("0")
    8889  createdAt         DateTime  @default(now())
    8990  updatedAt         DateTime  @updatedAt
     
    9192  services          Service[]
    9293  employees         Employee[]
     94  clients           Client[]  // Add the relation to clients
    9395}
    9496
Note: See TracChangeset for help on using the changeset viewer.