17 lines
518 B
JavaScript
17 lines
518 B
JavaScript
const mongoose = require('mongoose');
|
|
const { Schema } = mongoose;
|
|
|
|
const schema = new Schema({
|
|
categories: [{ type: Schema.Types.ObjectId, ref: 'product-categories' }],
|
|
company: { type: Schema.Types.ObjectId, ref: 'companies' },
|
|
branch_name: { type: String },
|
|
phone: { type: String },
|
|
city: { type: String },
|
|
state: { type: String },
|
|
truck_type: [{ type: String }],
|
|
description:{type: String},
|
|
address : { type: String }
|
|
});
|
|
|
|
module.exports = mongoose.model( "branches", schema );
|