18 lines
303 B
JavaScript
18 lines
303 B
JavaScript
const mongoose = require('mongoose');
|
|
|
|
const brandSchema = new mongoose.Schema({
|
|
title: String,
|
|
link: {
|
|
type: String,
|
|
unique: [true, "This link already taken"]
|
|
},
|
|
description: String,
|
|
logo: String,
|
|
},
|
|
{
|
|
timestamps: true,
|
|
}
|
|
);
|
|
|
|
module.exports = mongoose.model('Brand', brandSchema);
|