@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/edge.js +8 -6
- package/index-browser.js +4 -2
- package/index.d.ts +127 -2
- package/index.js +8 -6
- package/package.json +1 -1
- package/schema.prisma +2 -0
package/package.json
CHANGED
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
|
}
|