@bslau/hmm_prisma_schema 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/schema.prisma +7 -7
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -201,13 +201,13 @@ model TorpedoLocation {
|
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
model TorpedoComment {
|
|
204
|
-
id
|
|
205
|
-
torpedo
|
|
206
|
-
torpedoId
|
|
207
|
-
comment
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
204
|
+
id Int @id @default(autoincrement())
|
|
205
|
+
torpedo Torpedo @relation(fields: [torpedoId], references: [torpedoId], onDelete: NoAction, onUpdate: Cascade)
|
|
206
|
+
torpedoId Int
|
|
207
|
+
comment String
|
|
208
|
+
isCleared Boolean
|
|
209
|
+
createdAt DateTime @default(now())
|
|
210
|
+
updatedAt DateTime @updatedAt
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
model EventTracker {
|