-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathschema.prisma
734 lines (589 loc) · 17.9 KB
/
schema.prisma
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "rhel-openssl-1.0.x"]
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
relationMode = "prisma"
}
generator json {
provider = "prisma-json-types-generator"
}
generator enums {
provider = "node ./prisma/enum-generator.cjs"
}
// Necessary for Next auth
model Account {
id String @id @default(cuid())
userId String
type String
provider String
providerAccountId String
refresh_token String?
access_token String?
expires_at Int?
token_type String?
scope String?
id_token String?
session_state String?
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
@@unique([provider, providerAccountId])
@@index([userId])
}
model Session {
id String @id @default(cuid())
sessionToken String @unique
userId String
expires DateTime
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
@@index([userId])
}
model User {
id String @id @default(cuid())
name String?
email String? @unique
emailVerified DateTime?
image String?
accounts Account[]
sessions Session[]
companies Member[]
}
model VerificationToken {
identifier String
token String @unique
expires DateTime
@@unique([identifier, token])
}
model Company {
id String @id @default(cuid())
name String
publicId String
incorporationType String
incorporationDate DateTime
incorporationCountry String
incorporationState String
streetAddress String
city String
state String
zipcode String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
updates Update[]
users Member[]
audits Audit[]
shareClasses ShareClass[]
equityPlans EquityPlan[]
documents Document[]
templates Template[]
stakeholders Stakeholder[]
investments Investment[]
shares Share[]
options Option[]
safes Safe[]
convertibleNotes ConvertibleNote[]
@@unique([publicId])
}
enum MemberStatusEnum {
ACTIVE
INACTIVE
PENDING
}
model Member {
id String @id @default(cuid())
title String?
status MemberStatusEnum @default(PENDING)
isOnboarded Boolean @default(false)
workEmail String?
lastAccessed DateTime @default(now())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
documentReceived EsignRecipient[]
documents Document[]
templates Template[]
updates Update[]
@@unique([companyId, userId])
@@index([companyId])
@@index([status])
@@index([userId])
}
enum StakeholderTypeEnum {
INDIVIDUAL
INSTITUTION
}
enum StakeholderRelationshipEnum {
ADVISOR
BOARD_MEMBER
CONSULTANT
EMPLOYEE
EX_ADVISOR
EX_CONSULTANT
EX_EMPLOYEE
EXECUTIVE
FOUNDER
INVESTOR
NON_US_EMPLOYEE
OFFICER
OTHER
}
model Stakeholder {
id String @id @default(cuid())
name String
email String @unique
institutionName String?
stakeholderType StakeholderTypeEnum @default(INDIVIDUAL)
currentRelationship StakeholderRelationshipEnum @default(EMPLOYEE)
taxId String?
streetAddress String?
city String?
state String?
zipcode String?
country String @default("US")
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
investments Investment[]
shares Share[]
options Option[]
safes Safe[]
convertibleNotes ConvertibleNote[]
updates UpdateRecipient[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([companyId])
}
model Audit {
id String @id @default(cuid())
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
summary String?
action String
occurredAt DateTime @default(now())
actor Json
target Json[]
context Json
@@index([companyId])
}
enum ShareTypeEnum {
COMMON
PREFERRED
}
enum SharePrefixEnum {
CS // Common Shares
PS // Preferred Shares
}
enum ConversionRightsEnum {
CONVERTS_TO_FUTURE_ROUND
CONVERTS_TO_SHARE_CLASS_ID
}
// Based on OCF format
// https://open-cap-table-coalition.github.io/Open-Cap-Format-OCF/schema_markdown/schema/objects/StockClass/
model ShareClass {
id String @id @default(cuid())
idx Int // auto-generated, auto-incremented based on company
name String
classType ShareTypeEnum @default(COMMON)
prefix SharePrefixEnum @default(CS)
initialSharesAuthorized BigInt
boardApprovalDate DateTime
stockholderApprovalDate DateTime
votesPerShare Int
parValue Float
pricePerShare Float
seniority Int
// Conversion Rights
conversionRights ConversionRightsEnum @default(CONVERTS_TO_FUTURE_ROUND)
convertsToShareClassId String?
liquidationPreferenceMultiple Float
participationCapMultiple Float
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
equityPlans EquityPlan[]
investments Investment[]
shares Share[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([companyId, idx])
@@index([companyId])
}
enum CancellationBehaviorEnum {
RETIRE
RETURN_TO_POOL
HOLD_AS_CAPITAL_STOCK
DEFINED_PER_PLAN_SECURITY
}
model EquityPlan {
id String @id @default(cuid())
name String
boardApprovalDate DateTime
planEffectiveDate DateTime?
initialSharesReserved BigInt
defaultCancellatonBehavior CancellationBehaviorEnum
comments String?
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
shareClassId String
shareClass ShareClass @relation(fields: [shareClassId], references: [id], onDelete: Cascade)
options Option[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([shareClassId])
@@index([companyId])
}
model Bucket {
id String @id @default(cuid())
name String
key String
mimeType String
size Int
documents Document[]
templates Template[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
model Document {
id String @id @default(cuid())
publicId String
name String
bucketId String
bucket Bucket @relation(fields: [bucketId], references: [id], onDelete: Cascade)
uploaderId String
uploader Member @relation(fields: [uploaderId], references: [id], onDelete: Cascade)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
shareId String?
share Share? @relation(fields: [shareId], references: [id], onDelete: SetNull)
optionId String?
option Option? @relation(fields: [optionId], references: [id], onDelete: SetNull)
safeId String?
safe Safe? @relation(fields: [safeId], references: [id], onDelete: SetNull)
convertibleNoteId String?
convertibleNote ConvertibleNote? @relation(fields: [convertibleNoteId], references: [id], onDelete: SetNull)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([publicId])
@@index([bucketId])
@@index([uploaderId])
@@index([companyId])
@@index([shareId])
@@index([optionId])
@@index([safeId])
@@index([convertibleNoteId])
}
enum FieldTypes {
TEXT
RADIO
EMAIL
DATE
DATETIME
TEXTAREA
CHECKBOX
SIGNATURE
}
model TemplateField {
id String @id @default(cuid())
name String
type FieldTypes @default(TEXT)
defaultValue String @default("")
readOnly Boolean @default(false)
required Boolean @default(false)
top Int
left Int
width Int
height Int
template Template @relation(fields: [templateId], references: [id], onDelete: Cascade)
templateId String
viewportHeight Int
viewportWidth Int
page Int
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([templateId])
}
enum TemplateStatus {
DRAFT
COMPLETE
}
model Template {
id String @id @default(cuid())
publicId String
name String
status TemplateStatus @default(DRAFT)
bucketId String
bucket Bucket @relation(fields: [bucketId], references: [id], onDelete: Cascade)
uploaderId String
uploader Member @relation(fields: [uploaderId], references: [id], onDelete: Cascade)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
fields TemplateField[]
@@index([bucketId])
@@index([uploaderId])
@@index([companyId])
}
enum EsignRecipientStatus {
SENT
SIGNED
PENDING
}
model EsignRecipient {
id String @id @default(cuid())
email String?
status EsignRecipientStatus @default(PENDING)
memberId String?
member Member? @relation(fields: [memberId], references: [id], onDelete: SetNull)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([memberId])
}
enum SecuritiesStatusEnum {
ACTIVE
DRAFT
SIGNED
PENDING
}
enum VestingScheduleEnum {
VESTING_0_0_0 // Immediate vesting
VESTING_0_0_1 // 1 year cliff with no vesting
VESTING_4_1_0 // 4 years vesting every month with no cliff
VESTING_4_1_1 // 4 years vesting every month with 1 year cliff
VESTING_4_3_1 // 4 years vesting every 3 months with 1 year cliff
VESTING_4_6_1 // 4 years vesting every 6 months with 1 year cliff
VESTING_4_12_1 // 4 years vesting every year with 1 year cliff
}
enum ShareLegendsEnum {
US_SECURITIES_ACT // US Securities Act of 1933
SALE_AND_ROFR // Sale and Right of first refusal
TRANSFER_RESTRICTIONS // Bylaw transfer restrictions
}
model Share {
id String @id @default(cuid())
status SecuritiesStatusEnum @default(DRAFT)
certificateId String
quantity Int // Number of shares
pricePerShare Float?
capitalContribution Float? // Total amount of money contributed/invested
ipContribution Float? // Value of the intellectual property contributed
debtCancelled Float? // Amount of debt cancelled
otherContributions Float? // Other contributions
vestingSchedule VestingScheduleEnum
companyLegends ShareLegendsEnum[]
issueDate DateTime
rule144Date DateTime?
vestingStartDate DateTime?
boardApprovalDate DateTime
stakeholderId String
stakeholder Stakeholder @relation(fields: [stakeholderId], references: [id], onDelete: Cascade)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
shareClassId String
shareClass ShareClass @relation(fields: [shareClassId], references: [id], onDelete: Cascade)
documents Document[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([companyId])
@@index([shareClassId])
@@index([stakeholderId])
}
enum OptionTypeEnum {
ISO // Incentive Stock Options
NSO // Non-satutory Stock Options
RSU // Restricted Stock Units
}
enum OptionStatusEnum {
DRAFT
ACTIVE
EXERCISED
EXPIRED
CANCELLED
}
model Option {
id String @id @default(cuid())
grantId String
quantity Int
exercisePrice Float
type OptionTypeEnum
status OptionStatusEnum @default(DRAFT)
vestingSchedule VestingScheduleEnum
issueDate DateTime
expirationDate DateTime
vestingStartDate DateTime
boardApprovalDate DateTime
rule144Date DateTime
documents Document[]
stakeholderId String
stakeholder Stakeholder @relation(fields: [stakeholderId], references: [id], onDelete: Cascade)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
equityPlanId String
equityPlan EquityPlan @relation(fields: [equityPlanId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([companyId, grantId])
@@index([companyId])
@@index([equityPlanId])
@@index([stakeholderId])
}
model Investment {
id String @id @default(cuid())
amount Float // Amount of money invested
shares BigInt // Number of shares issued to the investor at the time of investment
date DateTime
comments String?
shareClassId String
shareClass ShareClass @relation(fields: [shareClassId], references: [id], onDelete: Cascade)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
// Investors => StakeholderRelationshipEnum["INVESTOR"]
stakeholderId String
stakeholder Stakeholder @relation(fields: [stakeholderId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([companyId])
@@index([stakeholderId])
@@index([shareClassId])
}
enum SafeTypeEnum {
PRE_MONEY
POST_MONEY
}
enum SafeStatusEnum {
DRAFT
ACTIVE
PENDING
EXPIRED
CANCELLED
}
// YC Standard Safe
enum SafeTemplateEnum {
POST_MONEY_CAP @map("Valuation Cap, no Discount")
POST_MONEY_DISCOUNT @map("Discount, no Valuation Cap")
POST_MONEY_MFN @map("MFN, no Valuation Cap, no Discount")
POST_MONEY_CAP_WITH_PRO_RATA @map("Valuation Cap, no Discount, include Pro Rata Rights")
POST_MONEY_DISCOUNT_WITH_PRO_RATA @map("Discount, no Valuation Cap, include Pro Rata Rights")
POST_MONEY_MFN_WITH_PRO_RATA @map("MFN, no Valuation Cap, no Discount, include Pro Rata Rights")
CUSTOM @map("Custom")
}
model Safe {
id String @id @default(cuid())
publicId String // eg. SAFE-01
type SafeTypeEnum @default(POST_MONEY)
status SafeStatusEnum @default(DRAFT)
capital Float // Amount of money invested
safeTemplate SafeTemplateEnum?
valuationCap Float?
discountRate Float?
mfn Boolean @default(false) // Most Favored Nation
proRata Boolean @default(false) // Pro Rata Rights
additionalTerms String?
documents Document[]
stakeholderId String
stakeholder Stakeholder @relation(fields: [stakeholderId], references: [id], onDelete: Cascade)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
issueDate DateTime
boardApprovalDate DateTime
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([publicId, companyId])
@@index([companyId])
@@index([stakeholderId])
}
enum ConvertibleStatusEnum {
DRAFT
ACTIVE
PENDING
EXPIRED
CANCELLED
}
enum ConvertibleTypeEnum {
CCD // Compulsory Convertible Debenture
OCD // Optionally Convertible Debenture
NOTE // Simple Convertible note
}
enum ConvertibleInterestMethodEnum {
SIMPLE
COMPOUND
}
enum ConvertibleInterestAccrualEnum {
DAILY
MONTHLY
SEMI_ANNUALLY
ANNUALLY
YEARLY
CONTINUOUSLY
}
enum ConvertibleInterestPaymentScheduleEnum {
DEFERRED
PAY_AT_MATURITY
}
model ConvertibleNote {
id String @id @default(cuid())
publicId String // eg. CN-01
status ConvertibleStatusEnum @default(DRAFT)
type ConvertibleTypeEnum @default(NOTE)
capital Float // Amount of money invested
conversionCap Float?
discountRate Float?
mfn Boolean? // Most Favored Nation
additionalTerms String?
interestRate Float?
interestMethod ConvertibleInterestMethodEnum?
interestAccrual ConvertibleInterestAccrualEnum?
interestPaymentSchedule ConvertibleInterestPaymentScheduleEnum?
documents Document[]
stakeholderId String
stakeholder Stakeholder @relation(fields: [stakeholderId], references: [id], onDelete: Cascade)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
issueDate DateTime
boardApprovalDate DateTime
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([publicId, companyId])
@@index([companyId])
@@index([stakeholderId])
}
model Update {
id String @id @default(cuid())
publicId String
title String
content Json
html String
isPublic Boolean @default(false)
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
authorId String
author Member @relation(fields: [authorId], references: [id], onDelete: Cascade)
recipients UpdateRecipient[]
sharedAt DateTime?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([publicId])
@@index([publicId])
@@index([authorId])
@@index([companyId])
}
enum UpdateEmailStatusEnum {
SENT
PENDING
FAILED
}
model UpdateRecipient {
id String @id @default(cuid())
stakeholderId String
stakeholder Stakeholder @relation(fields: [stakeholderId], references: [id], onDelete: Cascade)
updateId String
update Update @relation(fields: [updateId], references: [id], onDelete: Cascade)
status UpdateEmailStatusEnum @default(PENDING)
sentAt DateTime?
readAt DateTime?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([updateId])
@@index([stakeholderId])
}