summaryrefslogtreecommitdiff
path: root/models/picture.js
blob: d80810cb301842bf989041bf3169e3745922b8b8 (plain)
1
2
3
4
5
6
7
8
9
const mongoose = require('mongoose');

//Schema Setup
const pictureSchema = new mongoose.Schema({
    type: String,
    data: Buffer
});

module.exports = new mongoose.model('Picture', pictureSchema);