@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bslau/hmm_prisma_schema",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
4
4
  "main": "index.js",
5
5
  "author": "CIPA Development Team",
6
6
  "license": "ISC",
@@ -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
  }