14 lines
328 B
JavaScript
14 lines
328 B
JavaScript
const mongoose = require('mongoose');
|
|
const Schema = mongoose.Schema;
|
|
|
|
const BannerSchema = new Schema({
|
|
location_name: String,
|
|
image: String,
|
|
created_at: {
|
|
type: Date,
|
|
default: Date.now
|
|
}
|
|
}, { versionKey: false });
|
|
|
|
const Banner = mongoose.model('banner', BannerSchema);
|
|
module.exports = Banner; |