@creator.co/creatorco-prisma-client 1.0.24-alpha-28b252a → 1.0.24-alpha-b01aec2

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
@@ -73,7 +73,7 @@
73
73
  },
74
74
  "./*": "./*"
75
75
  },
76
- "version": "1.0.24-alpha-28b252a",
76
+ "version": "1.0.24-alpha-b01aec2",
77
77
  "sideEffects": false,
78
78
  "description": "Prisma client for creatorco Database"
79
79
  }
package/schema.prisma CHANGED
@@ -464,6 +464,7 @@ model Campaign {
464
464
  status String @default("draft") // draft, paused, pending, private, publish, trash
465
465
  date DateTime @default(now())
466
466
  publishDate DateTime?
467
+ sfSyncDate DateTime?
467
468
  description String? @db.Text
468
469
  productDescription String? @db.Text
469
470
  prizeDescription String? @db.Text
@@ -528,6 +529,7 @@ model Campaign {
528
529
  sequences Sequence[]
529
530
 
530
531
  @@index([brandId])
532
+ @@index([sfSyncDate])
531
533
  @@map("campaign")
532
534
  }
533
535
 
@@ -1241,6 +1243,7 @@ model ShopifyStore {
1241
1243
 
1242
1244
  brand Brand? @relation(fields: [brandId], references: [id], onDelete: Cascade)
1243
1245
 
1246
+ @@index([brandId])
1244
1247
  @@map("shopify_store")
1245
1248
  }
1246
1249
 
package/wasm.js CHANGED
@@ -384,6 +384,7 @@ exports.Prisma.CampaignScalarFieldEnum = {
384
384
  status: 'status',
385
385
  date: 'date',
386
386
  publishDate: 'publishDate',
387
+ sfSyncDate: 'sfSyncDate',
387
388
  description: 'description',
388
389
  productDescription: 'productDescription',
389
390
  prizeDescription: 'prizeDescription',