source: prisma/schema.prisma@ 057453c

main
Last change on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago

feat: implement employees

  • Property mode set to 100644
File size: 3.4 KB
Line 
1generator client {
2 provider = "prisma-client-js"
3}
4
5datasource db {
6 provider = "postgresql"
7 url = env("DATABASE_URL")
8}
9
10model Client {
11 id String @id @default(uuid())
12 companyId String? // Optional company identifier
13 name String
14 email String @unique
15 address Json
16 logoUrl String?
17 phoneNumber String?
18 vatNumber String?
19 companyNumber String?
20 representative String
21 status CustomerStatus @default(active)
22
23 invoicesReceived Invoice[] @relation("InvoiceTo")
24}
25
26model Service {
27 id String @id @default(uuid())
28 name String
29 sprint Float
30 hour Float
31 month Float
32 tenantId String
33 tenant Tenant @relation(fields: [tenantId], references: [id], onDelete: Cascade)
34
35 lineItems LineItem[]
36}
37
38model Invoice {
39 id String @id @default(uuid())
40 sent Int? // Number of times sent
41 dueDate DateTime
42 status InvoiceStatus
43 currency Currency
44 quantityType QuantityType
45 subTotal Float
46 createDate DateTime
47 month Month
48 discount Float?
49 taxes Float?
50 totalAmount Float
51 invoiceNumber String @unique
52 pdfRef String?
53
54 invoiceFromId String
55 invoiceFrom Tenant @relation(fields: [invoiceFromId], references: [id], onDelete: Cascade)
56
57 invoiceToId String
58 invoiceTo Client @relation("InvoiceTo", fields: [invoiceToId], references: [id], onDelete: Cascade)
59
60 items LineItem[]
61}
62
63model LineItem {
64 id String @id @default(uuid())
65 title String
66 price Float
67 total Float
68 quantity Int
69 description String?
70 serviceId String
71 service Service @relation(fields: [serviceId], references: [id], onDelete: Cascade)
72 invoiceId String
73 invoice Invoice @relation(fields: [invoiceId], references: [id], onDelete: Cascade)
74}
75
76model 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
95model 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
108// Enums
109enum CustomerStatus {
110 active
111 banned
112 inactive
113}
114
115enum InvoiceStatus {
116 draft
117 processing
118 pending
119 overdue
120 paid
121}
122
123enum Currency {
124 EUR
125 USD
126}
127
128enum QuantityType {
129 Unit
130 Hour
131 Sprint
132 Month
133}
134
135enum Month {
136 January
137 February
138 March
139 April
140 May
141 June
142 July
143 August
144 September
145 October
146 November
147 December
148}
149
150enum EmployeeStatus {
151 active
152 inactive
153}
Note: See TracBrowser for help on using the repository browser.