mirror of
https://github.com/rjNemo/MERN_sample_app
synced 2026-06-06 08:46:39 +00:00
15 lines
262 B
JavaScript
15 lines
262 B
JavaScript
import mongoose from "mongoose";
|
|
|
|
// create a schema
|
|
const ItemSchema = new mongoose.Schema({
|
|
name: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
date: {
|
|
type: Date,
|
|
default: Date.now,
|
|
},
|
|
});
|
|
|
|
export const Item = mongoose.model("item", ItemSchema);
|