forked from growchief/growchief
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.prisma
More file actions
378 lines (332 loc) · 10.4 KB
/
schema.prisma
File metadata and controls
378 lines (332 loc) · 10.4 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
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id String @id @default(uuid())
email String
password String?
providerName Provider
name String?
lastName String?
isSuperAdmin Boolean @default(false)
providerId String?
organizations UserOrganization[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
activated Boolean @default(true)
notifications Notification[]
@@unique([email, providerName])
@@index([providerId])
@@index([createdAt])
@@index([activated])
}
model Organization {
id String @id @default(uuid())
users UserOrganization[]
allowTrial Boolean @default(true)
companyName String @default("")
subscription Subscription?
paymentId String?
invites Invites[]
botGroups BotGroup[]
bots Bot[]
apiKey String? @default(uuid())
workflows Workflows[]
nodes WorkflowNodes[]
leadOrganizations LeadsOrganization[]
activities Activity[]
proxies Proxy[]
plugs Plugs[]
actions SavedActions[]
credits Credits[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
model UserOrganization {
id String @id @default(uuid())
user User @relation(fields: [userId], references: [id])
userId String
organization Organization @relation(fields: [organizationId], references: [id])
organizationId String
disabled Boolean @default(false)
role Role @default(USER)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@unique([userId, organizationId])
@@index([disabled])
@@index([createdAt])
@@index([deletedAt])
}
model Subscription {
id String @id @default(uuid())
organizationId String @unique
organization Organization @relation(fields: [organizationId], references: [id])
identifier String
total Int @default(1)
interval Interval
monthlyCredits Int @default(200)
cancel_at DateTime?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([organizationId])
}
model Invites {
id String @id @default(uuid())
email String
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
role Role
status InviteStatus
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@unique([email, organizationId])
@@index([email])
@@index([organizationId])
@@index([deletedAt])
}
model Notification {
id String @id @default(uuid())
userId String
user User @relation(fields: [userId], references: [id])
title String
content String
additionalInfo String?
read Boolean @default(false)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([read])
@@index([userId])
@@index([createdAt])
}
model BotGroup {
id String @id @default(uuid())
name String
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
active Boolean @default(true)
bots Bot[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@index([organizationId])
@@index([active])
@@index([createdAt])
@@index([deletedAt])
}
model Bot {
id String @id @default(uuid())
name String
platform String
storage String?
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
botGroupId String
botGroup BotGroup @relation(fields: [botGroupId], references: [id])
logged Boolean @default(true)
status Status @default(ACTIVE)
settings String?
currentJobTime DateTime @default(now())
profilePicture String?
internalId String
timezone Int @default(0)
workingHours String @default("[[540,1020],[540,1020],[540,1020],[540,1020],[540,960],[],[]]")
proxyId String?
proxy Proxy? @relation(fields: [proxyId], references: [id])
restrictions Restrictions[]
plugs Plugs[]
actions SavedActions[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@unique([organizationId, platform, internalId])
@@index([platform])
@@index([organizationId])
@@index([createdAt])
@@index([deletedAt])
}
model Workflows {
id String @id @default(uuid())
name String
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
active Boolean @default(false)
nodes WorkflowNodes[]
leads LeadsOrganization[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@index([organizationId])
@@index([active])
@@index([createdAt])
@@index([deletedAt])
}
model WorkflowNodes {
id String @unique @default(uuid())
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
workflowId String
workflow Workflows @relation(fields: [workflowId], references: [id])
type String
position String
data String?
parentId String?
parent WorkflowNodes? @relation("ParentNode", fields: [parentId], references: [id])
children WorkflowNodes[] @relation("ParentNode")
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@id([id, organizationId, workflowId])
@@index([workflowId])
@@index([createdAt])
@@index([deletedAt])
}
model LeadsOrganization {
id String @id @default(uuid())
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
leadId String
lead Leads @relation(fields: [leadId], references: [id])
workflowId String?
workflow Workflows? @relation(fields: [workflowId], references: [id])
createdAt DateTime @default(now())
@@unique([organizationId, leadId, workflowId])
@@index([createdAt])
}
model Leads {
id String @id @default(uuid())
firstName String?
lastName String?
email String?
organization_name String?
phone String?
status String?
platform String
url String
picture String?
organization LeadsOrganization[]
activities Activity[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@unique([platform, url])
@@index([createdAt])
}
model Activity {
id String @id @default(uuid())
leadId String
lead Leads @relation(fields: [leadId], references: [id])
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
type String
createdAt DateTime @default(now()) @db.Date
botId String
stepId String
workflowId String
@@unique([leadId, organizationId, type, botId, stepId, workflowId])
@@index([leadId, organizationId, type])
}
model Proxy {
id String @id @default(uuid())
ip String
data String
provider String
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
username String
password String
country String
server String
bots Bot[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@index([organizationId])
@@index([provider])
@@index([createdAt])
@@index([deletedAt])
}
model Restrictions {
id String @id @default(uuid())
methodName String
until DateTime
botId String
bot Bot @relation(fields: [botId], references: [id])
@@index([botId, until])
}
model Plugs {
id String @id @default(uuid())
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
data String @default("{}")
botId String
bot Bot @relation(fields: [botId], references: [id])
identifier String
active Boolean @default(true)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@unique([botId, identifier])
@@index([active])
@@index([createdAt])
@@index([deletedAt])
}
model SavedActions {
id String @id @default(uuid())
platform String
internalId String
type String
botId String
bot Bot @relation(fields: [botId], references: [id])
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
content String?
comment String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
@@unique([internalId, type, botId])
@@index([platform])
@@index([type])
@@index([internalId])
@@index([botId])
@@index([organizationId])
@@index([createdAt])
@@index([deletedAt])
}
model Credits {
id String @id @default(uuid())
organizationId String
organization Organization @relation(fields: [organizationId], references: [id])
total Int
createdAt DateTime @default(now())
@@index([organizationId])
@@index([createdAt])
}
enum InviteStatus {
PENDING
REJECTED
ACCEPTED
}
enum Interval {
month
year
}
enum Provider {
LOCAL
GOOGLE
GITHUB
}
enum Role {
SUPERADMIN
ADMIN
USER
}
enum Status {
ACTIVE
PAUSED
}