picker-db 3.7.2 → 3.7.4
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.
|
@@ -177,6 +177,11 @@ module.exports = (connection) => {
|
|
|
177
177
|
trim: true,
|
|
178
178
|
index: true,
|
|
179
179
|
},
|
|
180
|
+
customerCountryCode: {
|
|
181
|
+
type: String,
|
|
182
|
+
required: false,
|
|
183
|
+
trim: true,
|
|
184
|
+
},
|
|
180
185
|
customerImage: {
|
|
181
186
|
thumbnail: { type: String, default: null },
|
|
182
187
|
original: { type: String, default: null },
|
|
@@ -760,6 +765,9 @@ module.exports = (connection) => {
|
|
|
760
765
|
cancelReasonByAdmin: {
|
|
761
766
|
type: String
|
|
762
767
|
},
|
|
768
|
+
tipBusiness: {
|
|
769
|
+
type: Number
|
|
770
|
+
},
|
|
763
771
|
}, { timestamps: true });
|
|
764
772
|
|
|
765
773
|
BookingSchema.pre("save", function (next) {
|