Newer
Older
const mongoose = require('mongoose');
const dbURL = 'mongodb://localhost:27017/wbd3fap';
const driverSchema = new mongoose.Schema({
});
const Driver = mongoose.model('Driver', driverSchema);
module.exports = Driver;
const mongoose = require('mongoose');
const dbURL = 'mongodb://localhost:27017/wbd3fap';
const driverSchema = new mongoose.Schema({
});
const Driver = mongoose.model('Driver', driverSchema);
module.exports = Driver;