@factor-wise/prisma-schema 1.0.12 → 1.0.13
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 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -650,6 +650,7 @@ model customer {
|
|
|
650
650
|
updatedAt DateTime? @default(now()) @updatedAt @db.Timestamp(0)
|
|
651
651
|
customerappId Int?
|
|
652
652
|
isBlocked Boolean @default(false)
|
|
653
|
+
utmSource String? @db.VarChar(256)
|
|
653
654
|
addresses address[]
|
|
654
655
|
bankstatement bankstatement[]
|
|
655
656
|
customerapp customerapp? @relation(fields: [customerappId], references: [customerID], map: "fk_customer_customerapp")
|