-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.prisma
More file actions
212 lines (180 loc) · 6.79 KB
/
Copy pathschema.prisma
File metadata and controls
212 lines (180 loc) · 6.79 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
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}
model User {
id String @id @default(cuid())
name String?
username String? @unique
email String? @unique
password String?
emailVerified DateTime?
image String?
onboardingComplete Boolean @default(false)
onboardingStep Int @default(0) // 0 = not started, 1-3 = in progress steps, 4 = completed
organizationId String?
organization Organization? @relation(fields: [organizationId], references: [id])
accounts Account[]
sessions Session[]
// Optional for WebAuthn support
Authenticator Authenticator[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([organizationId])
}
model Account {
id String @id @default(cuid())
userId String @unique
type String
provider String
providerAccountId String
refresh_token String? @db.Text
access_token String? @db.Text
expires_at Int?
token_type String?
scope String?
id_token String? @db.Text
session_state String?
refresh_token_expires_in Int?
user User? @relation(fields: [userId], references: [id])
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@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])
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([userId])
}
model VerificationToken {
identifier String
token String
expires DateTime
@@unique([identifier, token])
}
model Organization {
id String @id @default(cuid())
name String
logo String?
industry String?
size String?
description String? @db.Text
website String?
officeLocations String? @db.Text
communicationTools String? @db.Text // JSON array of tools
targetDepartments String? @db.Text // JSON array of departments
executiveInfo String? @db.Text // JSON array of executive info
vendorsPartners String? @db.Text // JSON array of vendors/partners
recentEvents String? @db.Text
socialMedia String? @db.Text // JSON array of social media links
companyAnniversary String?
employeePerks String? @db.Text // JSON array of perks
users User[]
employees Employee[]
campaigns Campaign[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
// Optional for WebAuthn support
model Authenticator {
credentialID String @unique
userId String
providerAccountId String
credentialPublicKey String
counter Int
credentialDeviceType String
credentialBackedUp Boolean
transports String?
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
@@id([userId, credentialID])
}
model Employee {
id String @id @default(cuid())
employeeId String // External employee ID from the organization
firstName String
lastName String
email String
organizationId String
organization Organization @relation(fields: [organizationId], references: [id], onDelete: Cascade)
metadata EmployeeMetadata[]
phishingPlans PhishingPlan[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([organizationId, employeeId])
@@unique([organizationId, email])
@@index([organizationId])
}
model EmployeeMetadata {
id String @id @default(cuid())
employeeId String
employee Employee @relation(fields: [employeeId], references: [id], onDelete: Cascade)
key String // The column name from the CSV
value String @db.Text // The value for this employee
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([employeeId, key])
@@index([employeeId])
}
model Campaign {
id String @id @default(cuid())
name String
description String? @db.Text
status String // draft, active, completed, cancelled
organizationId String
organization Organization @relation(fields: [organizationId], references: [id], onDelete: Cascade)
startDate DateTime?
endDate DateTime?
phishingPlans PhishingPlan[]
phishingTemplates PhishingTemplate[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([organizationId])
}
model PhishingTemplate {
id String @id @default(cuid())
campaignId String
campaign Campaign @relation(fields: [campaignId], references: [id], onDelete: Cascade)
lureType String // bonus, password_reset, ceo_request, etc.
subject String
content String @db.Text
fromName String?
fromEmail String?
phishingPlans PhishingPlan[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([campaignId])
}
model PhishingPlan {
id String @id @default(cuid())
campaignId String
campaign Campaign @relation(fields: [campaignId], references: [id], onDelete: Cascade)
employeeId String
employee Employee @relation(fields: [employeeId], references: [id], onDelete: Cascade)
templateId String?
template PhishingTemplate? @relation(fields: [templateId], references: [id])
lureType String // bonus, password_reset, ceo_request, etc.
timing String? // immediate, delay_3_days, etc.
tone String? // urgent, casual, formal
attackVector String? // link, attachment, reply
status String // pending, scheduled, sent, clicked, reported
scheduledFor DateTime?
sentAt DateTime?
clickedAt DateTime?
reportedAt DateTime?
customSubject String?
customContent String? @db.Text
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([campaignId])
@@index([employeeId])
@@index([templateId])
}