17 lines
302 B
JavaScript
17 lines
302 B
JavaScript
const { Schema, model } = require('mongoose');
|
|
|
|
const carModelSchema = new Schema(
|
|
{
|
|
make: {
|
|
type: String,
|
|
},
|
|
model: {
|
|
type: String,
|
|
},
|
|
year: {
|
|
type: Number,
|
|
},
|
|
}
|
|
);
|
|
|
|
module.exports = model('CarModel', carModelSchema, 'jdm_models'); |