forked from Junirezz/YieldVault-RWA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.prisma
More file actions
371 lines (322 loc) · 8.54 KB
/
Copy pathschema.prisma
File metadata and controls
371 lines (322 loc) · 8.54 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
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "sqlite"
url = "file:./dev.db"
}
model User {
id Int @id @default(autoincrement())
address String @unique
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
model VaultState {
id Int @id @default(1)
totalAssets String
totalShares String
updatedAt DateTime @updatedAt
}
model SharePriceSnapshot {
id String @id @default(uuid())
sharePrice String
totalAssets String
totalShares String
source String
recordedAt DateTime @default(now())
createdAt DateTime @default(now())
@@index([recordedAt])
}
model Transaction {
id String @id @default(uuid())
user String
amount String
type String
status String?
referralCode String?
timestamp DateTime @default(now())
}
model Referral {
id Int @id @default(autoincrement())
referrerAddress String
referredAddress String @unique
firstDepositAt DateTime?
createdAt DateTime @default(now())
@@index([referrerAddress])
}
model ReferralCode {
id Int @id @default(autoincrement())
code String @unique
ownerAddress String
createdAt DateTime @default(now())
}
model AdminAuditLog {
id String @id
action String
method String
path String
statusCode Int
actor String
apiKeyHash String
ipAddress String
userAgent String
metadata String
createdAt DateTime @default(now())
@@index([createdAt])
@@index([action])
@@index([actor])
}
model ApiKeyAuditEvent {
id String @id @default(uuid())
actor String
action String
keyFingerprint String
createdAt DateTime @default(now())
@@index([action])
@@index([createdAt])
@@index([keyFingerprint])
}
model ExportJob {
id String @id
format String
fileName String
contentType String
checksum String
checksumAlgorithm String
generatedBy String
walletAddress String?
rowCount Int
filters String
createdAt DateTime @default(now())
@@index([createdAt])
@@index([checksum])
@@index([generatedBy])
@@index([walletAddress])
@@index([format])
}
model BulkExportJob {
id String @id
status String @default("pending")
format String
generatedBy String
filters String
totalRows Int @default(0)
processedRows Int @default(0)
errorRows Int @default(0)
artifactId String?
errorMessage String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
completedAt DateTime?
@@index([status])
@@index([createdAt])
@@index([generatedBy])
}
model EventCursor {
id Int @id @default(1)
lastLedgerSeq Int
lastProcessedAt DateTime @updatedAt
}
model ProcessedEvent {
id String @id
ledgerSeq Int
eventType String
contractId String
txHash String
processedAt DateTime @default(now())
@@index([ledgerSeq])
@@index([txHash])
}
model WebhookEndpoint {
id String @id
url String
eventTypes String // JSON array
enabled Boolean @default(true)
secret String?
secretHash String?
verificationStatus String @default("pending")
challengeTokenHash String?
challengeExpiresAt DateTime?
verifiedAt DateTime?
lastVerificationError String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
deletedBy String?
deliveries WebhookDelivery[]
@@index([createdAt])
@@index([deletedAt])
@@index([verificationStatus])
}
model WebhookDelivery {
id String @id
endpointId String
endpointUrl String
eventType String
status String
attempts Int
deliveredAt DateTime?
lastError String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
endpoint WebhookEndpoint @relation(fields: [endpointId], references: [id], onDelete: Cascade)
@@index([createdAt])
@@index([endpointId])
}
model AdminActionReceipt {
id String @id @default(uuid())
action String
actor String
timestamp DateTime @default(now())
inputHash String
resultingState String // JSON string
signature String
createdAt DateTime @default(now())
@@index([action])
@@index([actor])
@@index([timestamp])
}
model AdminImpersonationSession {
id String @id @default(uuid())
actor String
apiKeyHash String
targetWallet String
reason String
startedAt DateTime @default(now())
expiresAt DateTime
endedAt DateTime?
status String @default("active")
ipAddress String
userAgent String
ledgerEntries AdminImpersonationLedgerEntry[]
@@index([status])
@@index([actor])
@@index([targetWallet])
@@index([startedAt])
@@index([expiresAt])
}
model AdminImpersonationLedgerEntry {
id String @id @default(uuid())
sessionId String
eventType String
actor String
metadata String
createdAt DateTime @default(now())
session AdminImpersonationSession @relation(fields: [sessionId], references: [id], onDelete: Cascade)
@@index([sessionId])
@@index([eventType])
@@index([createdAt])
}
model EmailQueue {
id String @id @default(uuid())
to String
subject String
text String?
html String?
status String @default("pending")
retryCount Int @default(0)
maxRetries Int @default(5)
nextRetryAt DateTime?
lastError String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([status])
@@index([createdAt])
}
model WebhookDeadLetter {
id String @id @default(uuid())
endpointId String
endpointUrl String
eventType String
payload String
attempts Int
lastError String?
originalDeliveryId String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
retriedAt DateTime?
status String @default("dead-letter")
@@index([endpointId])
@@index([eventType])
@@index([createdAt])
@@index([status])
}
model AdminConfigChange {
id String @id @default(uuid())
configType String
action String
actor String
ipAddress String?
userAgent String?
preChangeSnapshot String
postChangeSnapshot String
metadata String
createdAt DateTime @default(now())
@@index([configType])
@@index([createdAt])
@@index([actor])
}
model FeatureFlagOverride {
id String @id @default(uuid())
flagName String
enabled Boolean
scopeType String // "wallet" or "environment"
scopeValue String? // wallet address or environment name
expiresAt DateTime
actor String
createdAt DateTime @default(now())
@@index([flagName])
@@index([scopeType, scopeValue])
@@index([expiresAt])
@@index([actor])
}
model ExportManifest {
id String @id
requester String
reportType String
filters String
checksum String
generatedAt DateTime
fileName String
rowCount Int
bulkExportJobId String?
artifactId String?
@@index([generatedAt])
@@index([requester])
@@index([reportType])
@@index([checksum])
}
model ReconciliationSnapshot {
id String @id
generatedAt DateTime
traceId String?
status String
windowFrom DateTime
windowTo DateTime
summaryJson String
driftCount Int
@@index([generatedAt])
@@index([status])
}
model TransactionBackfillJob {
id String @id
jobKey String @unique
startLedger Int
endLedger Int
batchSize Int
dryRun Boolean
status String
rpcUrl String
contractId String
lastProcessedLedger Int?
progressJson String
errorMessage String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
completedAt DateTime?
@@index([status])
@@index([createdAt])
@@index([dryRun])
}