@creator.co/creatorco-prisma-client 1.0.14 → 1.0.15

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
@@ -5,5 +5,5 @@
5
5
  "browser": "index-browser.js",
6
6
  "sideEffects": false,
7
7
  "description": "Prisma client for creatorco Database",
8
- "version": "1.0.14"
8
+ "version": "1.0.15"
9
9
  }
package/schema.prisma CHANGED
@@ -342,6 +342,8 @@ model Brand {
342
342
  parentBrandId Int?
343
343
  parentBrand Brand? @relation("ChildBrands", fields: [parentBrandId], references: [id])
344
344
  childBrands Brand[] @relation("ChildBrands")
345
+ // generated (for search)
346
+ searchName String? @default(dbgenerated())
345
347
 
346
348
  @@map("brand")
347
349
  }