Changeset 057453c for prisma/schema.prisma
- Timestamp:
- 02/26/25 10:05:32 (5 weeks ago)
- Branches:
- main
- Children:
- 299af01
- Parents:
- 5d6f37a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
prisma/schema.prisma
r5d6f37a r057453c 8 8 } 9 9 10 model C ustomer{10 model Client { 11 11 id String @id @default(uuid()) 12 12 companyId String? // Optional company identifier … … 21 21 status CustomerStatus @default(active) 22 22 23 bankAccounts BankAccount[] // One-to-many relation24 invoicesSent Invoice[] @relation("InvoiceFrom")25 23 invoicesReceived Invoice[] @relation("InvoiceTo") 26 }27 28 model BankAccount {29 id String @id @default(uuid())30 customerId String31 customer Customer @relation(fields: [customerId], references: [id], onDelete: Cascade)32 accountNumber String?33 bicSwift String?34 iban String?35 routingNumber String?36 currency Currency37 24 } 38 25 … … 40 27 id String @id @default(uuid()) 41 28 name String 42 sprintPrice Float 43 hourPrice Float 44 monthPrice Float 29 sprint Float 30 hour Float 31 month Float 32 tenantId String 33 tenant Tenant @relation(fields: [tenantId], references: [id], onDelete: Cascade) 45 34 46 invoiceItems InvoiceItem[]35 lineItems LineItem[] 47 36 } 48 37 … … 64 53 65 54 invoiceFromId String 66 invoiceFrom Customer @relation("InvoiceFrom",fields: [invoiceFromId], references: [id], onDelete: Cascade)55 invoiceFrom Tenant @relation(fields: [invoiceFromId], references: [id], onDelete: Cascade) 67 56 68 57 invoiceToId String 69 invoiceTo C ustomer@relation("InvoiceTo", fields: [invoiceToId], references: [id], onDelete: Cascade)58 invoiceTo Client @relation("InvoiceTo", fields: [invoiceToId], references: [id], onDelete: Cascade) 70 59 71 items InvoiceItem[]60 items LineItem[] 72 61 } 73 62 74 model InvoiceItem {63 model LineItem { 75 64 id String @id @default(uuid()) 76 65 title String … … 85 74 } 86 75 76 model Tenant { 77 id String @id @default(cuid()) 78 name String 79 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?: {...}} 82 logoUrl String? 83 phoneNumber String? 84 vatNumber String? 85 companyNumber String? 86 representative String 87 lastInvoiceNumber String @default("0") 88 createdAt DateTime @default(now()) 89 updatedAt DateTime @updatedAt 90 invoicesSent Invoice[] 91 services Service[] 92 employees Employee[] 93 } 94 95 model Employee { 96 id String @id @default(uuid()) 97 name String 98 email String @unique 99 status EmployeeStatus @default(active) 100 iban String? 101 cv String? 102 photo String? 103 project String? 104 tenantId String 105 tenant Tenant @relation(fields: [tenantId], references: [id], onDelete: Cascade) 106 } 107 87 108 // Enums 88 109 enum CustomerStatus { … … 93 114 94 115 enum InvoiceStatus { 95 DRAFT96 PROCESSING97 PENDING98 OVERDUE99 PAID116 draft 117 processing 118 pending 119 overdue 120 paid 100 121 } 101 122 … … 106 127 107 128 enum QuantityType { 108 U NIT109 H OUR110 S PRINT111 M ONTH129 Unit 130 Hour 131 Sprint 132 Month 112 133 } 113 134 114 135 enum Month { 115 J ANUARY116 F EBRUARY117 M ARCH118 A PRIL119 M AY120 J UNE121 J ULY122 A UGUST123 S EPTEMBER124 O CTOBER125 N OVEMBER126 D ECEMBER136 January 137 February 138 March 139 April 140 May 141 June 142 July 143 August 144 September 145 October 146 November 147 December 127 148 } 149 150 enum EmployeeStatus { 151 active 152 inactive 153 }
Note:
See TracChangeset
for help on using the changeset viewer.