@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 +1 -1
- package/prisma/schema.prisma +1 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -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
|