Skip to content
Snippets Groups Projects
Driver.js 245 B
Newer Older
Fajar Nugroho's avatar
Fajar Nugroho committed
const mongoose = require('mongoose');

const dbURL = 'mongodb://localhost:27017/wbd3fap';
const driverSchema = new mongoose.Schema({
Fajar Nugroho's avatar
Fajar Nugroho committed
  data : [{type : Number}]
Fajar Nugroho's avatar
Fajar Nugroho committed
});

const Driver = mongoose.model('Driver', driverSchema);
module.exports = Driver;