@factor-wise/prisma-schema 2.0.129 → 2.0.130

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": "@factor-wise/prisma-schema",
3
- "version": "2.0.129",
3
+ "version": "2.0.130",
4
4
  "description": "Shared Prisma schema and generated client for Factor Wise projects",
5
5
  "main": "generated/client/index.js",
6
6
  "types": "generated/client/index.d.ts",
@@ -3660,7 +3660,7 @@ model click_logs {
3660
3660
  model campaigns {
3661
3661
  id Int @id @default(autoincrement()) @db.UnsignedInt
3662
3662
  campaignId String @unique @db.VarChar(36)
3663
- name String @db.VarChar(255)
3663
+ name String @unique @db.VarChar(255)
3664
3664
  status status @default(ZERO)
3665
3665
  createdAt DateTime @default(now())
3666
3666
  updatedAt DateTime @updatedAt