RevSocial/src/models/car_models.js
2025-05-03 19:36:46 -07:00

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');