@factor-wise/prisma-schema 2.0.68 → 2.0.69
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 +3 -3
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -3012,9 +3012,9 @@ model vendor_commission_slabs {
|
|
|
3012
3012
|
id Int @id @default(autoincrement())
|
|
3013
3013
|
vendorId Int @db.UnsignedInt
|
|
3014
3014
|
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3015
|
+
from Int
|
|
3016
|
+
to Int
|
|
3017
|
+
value Float
|
|
3018
3018
|
createdAt DateTime @default(now())
|
|
3019
3019
|
updatedAt DateTime @updatedAt
|
|
3020
3020
|
|