mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 08:13:03 +02:00
21 lines
362 B
JavaScript
21 lines
362 B
JavaScript
|
|
const mongoose = require("mongoose");
|
||
|
|
|
||
|
|
const EntrySchema = new mongoose.Schema({
|
||
|
|
title:{
|
||
|
|
type:String,
|
||
|
|
required: true
|
||
|
|
},
|
||
|
|
description:{
|
||
|
|
type:String,
|
||
|
|
required:true,
|
||
|
|
},
|
||
|
|
login:{
|
||
|
|
type:String,
|
||
|
|
required:true,
|
||
|
|
}
|
||
|
|
|
||
|
|
},
|
||
|
|
{ timestamps: true }
|
||
|
|
);
|
||
|
|
|
||
|
|
module.exports = mongoose.model("Entry", EntrySchema);
|