This commit is contained in:
Mr Swift
2024-08-25 19:52:31 +03:30
parent 037c4c2afb
commit 98183f3c57
7 changed files with 330 additions and 22 deletions
+5 -1
View File
@@ -5,7 +5,11 @@ const AwairdSchema = mongoose.Schema({
score:Number,
title:String,
desc:String,
expireDate:Date
expireDate:Date,
isDeleted:{
type:Boolean,
default:false
}
})