19 lines
375 B
JavaScript
19 lines
375 B
JavaScript
import mongoose from "mongoose";
|
|
|
|
const BrandSchema = new mongoose.Schema(
|
|
{
|
|
brandName: {
|
|
type: String,
|
|
required: [true, "Name of brand required"],
|
|
},
|
|
addedBy: {
|
|
type: mongoose.Schema.ObjectId,
|
|
ref: "User",
|
|
required: true,
|
|
},
|
|
},
|
|
{ timestamps: true }
|
|
);
|
|
|
|
export const BrandModel = mongoose.model("BrandModel", BrandSchema);
|