Files
asan-service/server/models/Brand.js
T
2024-02-08 12:40:53 +03:30

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);