|
|
@ -14,8 +14,9 @@ const tankersSchema = new mongoose.Schema({
|
|
|
|
|
|
|
|
|
|
|
|
tankerName: { type: String, default: null },
|
|
|
|
tankerName: { type: String, default: null },
|
|
|
|
phoneNumber: { type: String, default: null },
|
|
|
|
phoneNumber: { type: String, default: null },
|
|
|
|
typeofwater: { type: String, default: null },
|
|
|
|
|
|
|
|
capacity: { type: String, default: null },
|
|
|
|
typeofwater: [{ type: String, default: null }],
|
|
|
|
|
|
|
|
capacity: [{ type: String, default: null }],
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const tankersbookingSchema = new mongoose.Schema({
|
|
|
|
const tankersbookingSchema = new mongoose.Schema({
|
|
|
|