@bslau/hmm_prisma_schema 1.1.11 → 1.1.12
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 +1 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -205,7 +205,7 @@ model TorpedoComment {
|
|
|
205
205
|
torpedo Torpedo @relation(fields: [torpedoId], references: [torpedoId], onDelete: NoAction, onUpdate: Cascade)
|
|
206
206
|
torpedoId Int
|
|
207
207
|
comment String
|
|
208
|
-
isCleared Boolean
|
|
208
|
+
isCleared Boolean @default(false)
|
|
209
209
|
createdAt DateTime @default(now())
|
|
210
210
|
updatedAt DateTime @updatedAt
|
|
211
211
|
}
|