14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
const mongoose = require('mongoose');
|
|
|
|
const brandSchema = new mongoose.Schema({
|
|
title: String,
|
|
link: {
|
|
type: String
|
|
},
|
|
description: String,
|
|
logo: String,
|
|
}
|
|
);
|
|
|
|
module.exports = mongoose.model('Brand', brandSchema);
|