-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathschema.prisma
More file actions
1145 lines (904 loc) · 28.8 KB
/
schema.prisma
File metadata and controls
1145 lines (904 loc) · 28.8 KB
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
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
password String?
emailVerified DateTime?
image String?
accounts Account[]
sessions Session[]
memberships Member[]
passkeys Passkey[]
verificationToken VerificationToken[]
lastSignedIn DateTime @default(now())
identityProvider String?
accessTokens AccessToken[]
}
enum CredentialDeviceTypeEnum {
SINGLE_DEVICE
MULTI_DEVICE
}
model Passkey {
id String @id @default(cuid())
name String
createdAt DateTime @default(now())
updatedAt DateTime @default(now())
lastUsedAt DateTime?
credentialId Bytes
credentialPublicKey Bytes
counter BigInt
credentialDeviceType CredentialDeviceTypeEnum
credentialBackedUp Boolean
transports String[]
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
@@index([userId])
}
model PasskeyVerificationToken {
id String @id @unique @default(cuid())
token String @unique
expiresAt DateTime
createdAt DateTime @default(now())
}
model VerificationToken {
id Int @id @default(autoincrement())
secondaryId String @unique @default(cuid())
identifier String
token String @unique
expires DateTime
createdAt DateTime @default(now())
userId String?
user User? @relation(fields: [userId], references: [id], onDelete: Cascade)
@@unique([identifier, token])
@@index([userId])
}
model PasswordResetToken {
id String @id @default(cuid())
email String
token String @unique
expires DateTime
@@unique([email, token])
}
model Company {
id String @id @default(cuid())
name String
logo String?
publicId String
website String?
incorporationType String
incorporationDate DateTime
incorporationCountry String
incorporationState String
streetAddress String
city String
state String
zipcode String
country 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[]
dataRooms DataRoom[]
eSignAudits EsignAudit[]
billingCustomers BillingCustomer[]
customRoles CustomRole[]
BankAccount BankAccount[]
@@unique([publicId])
}
enum BankAccountTypeEnum {
CHECKING
SAVINGS
}
model BankAccount {
id String @id @default(cuid())
beneficiaryName String
beneficiaryAddress String
bankName String
bankAddress String
accountNumber String // iban or account number
routingNumber String // ABA or routing number
accountType BankAccountTypeEnum @default(CHECKING)
// International bank information
swiftCode String? // BIC or SWIFT code
primary Boolean @default(false)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
@@unique([companyId, accountNumber])
@@index([companyId])
}
enum MemberStatusEnum {
ACTIVE
INACTIVE
PENDING
}
enum Roles {
ADMIN
CUSTOM
}
model Member {
id String @id @default(cuid())
title String?
status MemberStatusEnum @default(PENDING)
isOnboarded Boolean @default(false)
role Roles? @default(ADMIN)
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)
customRoleId String?
customRole CustomRole? @relation(fields: [customRoleId], references: [id])
documentReceived EsignRecipient[]
documents Document[]
templates Template[]
updates Update[]
dataRooms DataRoomRecipient[]
UpdateRecipient UpdateRecipient[]
@@unique([companyId, userId])
@@index([companyId])
@@index([status])
@@index([userId])
@@index([customRoleId])
}
model CustomRole {
id String @id @default(cuid())
name String
companyId String
company Company @relation(fields: [companyId], references: [id])
permissions Json[]
member Member[]
@@index([companyId])
}
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[]
dataRooms DataRoomRecipient[]
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
tags String[]
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)
documentShares DocumentShare[]
dataRooms DataRoomDocument[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([publicId])
@@index([bucketId])
@@index([uploaderId])
@@index([companyId])
@@index([shareId])
@@index([optionId])
@@index([safeId])
@@index([convertibleNoteId])
}
model DataRoom {
id String @id @default(cuid())
name String
publicId String
public Boolean @default(false)
documents DataRoomDocument[]
recipients DataRoomRecipient[]
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([publicId])
@@unique([companyId, name])
@@index([publicId])
@@index([companyId])
}
model DataRoomDocument {
id String @id @default(cuid())
dataRoomId String
documentId String
dataRoom DataRoom @relation(fields: [dataRoomId], references: [id], onDelete: Cascade)
document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
@@unique([dataRoomId, documentId])
@@index([dataRoomId])
@@index([documentId])
}
model DataRoomRecipient {
id String @id @default(cuid())
name String?
email String
dataRoomId String
dataRoom DataRoom @relation(fields: [dataRoomId], references: [id], onDelete: Cascade)
memberId String?
member Member? @relation(fields: [memberId], references: [id], onDelete: SetNull)
stakeholderId String?
stakeholder Stakeholder? @relation(fields: [stakeholderId], references: [id], onDelete: SetNull)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([dataRoomId, email])
@@index([id, dataRoomId])
@@index([memberId])
@@index([dataRoomId])
@@index([stakeholderId])
}
model UpdateRecipient {
id String @id @default(cuid())
name String?
email String
updateId String
update Update @relation(fields: [updateId], references: [id], onDelete: Cascade)
memberId String?
member Member? @relation(fields: [memberId], references: [id], onDelete: SetNull)
stakeholderId String?
stakeholder Stakeholder? @relation(fields: [stakeholderId], references: [id], onDelete: SetNull)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([updateId, email])
@@index([id, updateId])
@@index([memberId])
@@index([updateId])
@@index([stakeholderId])
}
model DocumentShare {
id String @id @default(cuid())
link String
publicId String
linkExpiresAt DateTime
recipients String[] @default([])
emailProtected Boolean @default(false)
documentId String
document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([documentId])
}
enum FieldTypes {
TEXT
RADIO
EMAIL
DATE
DATETIME
TEXTAREA
CHECKBOX
SIGNATURE
SELECT
}
model TemplateField {
id String @id @default(cuid())
name String
type FieldTypes @default(TEXT)
defaultValue String @default("")
readOnly Boolean @default(false)
required Boolean @default(false)
prefilledValue String?
top Int
left Int
width Int
height Int
recipientId String
recipient EsignRecipient @relation(fields: [recipientId], references: [id], onDelete: Cascade)
template Template @relation(fields: [templateId], references: [id], onDelete: Cascade)
templateId String
viewportHeight Int
viewportWidth Int
page Int
/// [TemplateFieldMeta]
meta Json @default("{}")
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([templateId])
@@index([recipientId])
}
enum TemplateStatus {
DRAFT
COMPLETE
SENT
WAITING
CANCELLED
}
model Template {
id String @id @default(cuid())
publicId String
name String
status TemplateStatus @default(DRAFT)
orderedDelivery Boolean @default(false)
message 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)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
fields TemplateField[]
eSignRecipient EsignRecipient[]
completedOn DateTime?
eSignAudits EsignAudit[]
@@index([bucketId])
@@index([uploaderId])
@@index([companyId])
}
enum EsignRecipientStatus {
SENT
SIGNED
PENDING
}
model EsignRecipient {
id String @id @default(cuid())
email String
name String?
templateId String
template Template @relation(fields: [templateId], references: [id], onDelete: Cascade)
status EsignRecipientStatus @default(PENDING)
memberId String?
member Member? @relation(fields: [memberId], references: [id], onDelete: SetNull)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
templateFields TemplateField[]
eSignAudits EsignAudit[]
@@index([memberId])
@@index([templateId])
}
enum SecuritiesStatusEnum {
ACTIVE
DRAFT
SIGNED
PENDING
}
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
cliffYears Int @default(0) // 0 means immediate vesting, 1 means vesting starts after 1 year
vestingYears Int @default(0) // 0 means immediate vesting, 1 means vesting over 1 year
companyLegends ShareLegendsEnum[] @default([])
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
@@unique([companyId, certificateId])
@@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)
cliffYears Int @default(0) // 0 means immediate vesting, 1 means vesting starts after 1 year
vestingYears Int @default(0) // 0 means immediate vesting, 1 means vesting over 1 year
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?
safeId String?
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])
}
enum UpdateStatusEnum {
DRAFT
PUBLIC
PRIVATE
}
model Update {
id String @id @default(cuid())
publicId String
title String
content Json
html String
public Boolean @default(false)
status UpdateStatusEnum @default(DRAFT)
authorId String
companyId String
recipients UpdateRecipient[]
author Member @relation(fields: [authorId], references: [id], onDelete: Cascade)
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([publicId])
@@index([publicId])
@@index([authorId])
@@index([companyId])
}
model EsignAudit {
id String @id @default(cuid())
companyId String
company Company @relation(fields: [companyId], references: [id], onDelete: Cascade)
templateId String
template Template @relation(fields: [templateId], references: [id], onDelete: Cascade)
recipientId String?
recipient EsignRecipient? @relation(fields: [recipientId], references: [id], onDelete: SetNull)
action String
ip String
userAgent String
location String
summary String
occurredAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([companyId])
@@index([templateId])
@@index([recipientId])
}
enum PricingType {
one_time
recurring
}
enum PricingPlanInterval {
day
week
month
year
}
enum SubscriptionStatus {
trialing
active
canceled
incomplete
incomplete_expired
past_due
unpaid