|
|
|
@ -16,14 +16,11 @@ const tankersSchema = new mongoose.Schema({
|
|
|
|
|
phoneNumber: { type: String, default: null },
|
|
|
|
|
alternative_phoneNumber: { type: String, default: null },
|
|
|
|
|
typeofwater: [{ typeofwater: String}],
|
|
|
|
|
price:[{ typeofwater: String}],
|
|
|
|
|
capacity: { capacity: String},
|
|
|
|
|
price:[{ price: String}],
|
|
|
|
|
capacity: { type: String},
|
|
|
|
|
supplier_address: { type: String, default: null },
|
|
|
|
|
supplier_name : { type: String, default: null },
|
|
|
|
|
price: {
|
|
|
|
|
type: [String],
|
|
|
|
|
default: []
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
status: { type: String}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|