@creator.co/creatorco-prisma-client 1.0.38 → 1.0.39
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 +4 -5
- package/index-browser.js +0 -1
- package/index.d.ts +12 -45
- package/index.js +4 -5
- package/package.json +1 -1
- package/schema.prisma +2 -1
- package/wasm.js +0 -1
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -563,13 +563,14 @@ model CampaignToImage {
|
|
|
563
563
|
}
|
|
564
564
|
|
|
565
565
|
model CampaignToBrandAffiliateLink {
|
|
566
|
-
id Int @id @default(autoincrement())
|
|
567
566
|
campaignId Int
|
|
568
567
|
brandAffiliateLinkId Int
|
|
569
568
|
|
|
570
569
|
campaign Campaign @relation(fields: [campaignId], references: [id], onDelete: Cascade)
|
|
571
570
|
brandAffiliateLink BrandAffiliateLink @relation(fields: [brandAffiliateLinkId], references: [id], onDelete: Cascade)
|
|
572
571
|
|
|
572
|
+
@@id([campaignId, brandAffiliateLinkId])
|
|
573
|
+
@@index([brandAffiliateLinkId])
|
|
573
574
|
@@map("campaigntobrandaffiliatelink")
|
|
574
575
|
}
|
|
575
576
|
|