|
|
|
@ -15,10 +15,17 @@ const tankersSchema = new mongoose.Schema({
|
|
|
|
|
tankerName: { type: String, default: null },
|
|
|
|
|
phoneNumber: { type: String, default: null },
|
|
|
|
|
alternative_phoneNumber: { type: String, default: null },
|
|
|
|
|
typeofwater: { typeofwater: String},
|
|
|
|
|
capacity: { capacity: String},
|
|
|
|
|
typeofwater: {
|
|
|
|
|
type: [String],
|
|
|
|
|
default: []
|
|
|
|
|
},
|
|
|
|
|
capacity: { type: String},
|
|
|
|
|
supplier_address: { type: String, default: null },
|
|
|
|
|
supplier_name : { type: String, default: null },
|
|
|
|
|
price: {
|
|
|
|
|
type: [String],
|
|
|
|
|
default: []
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|