This commit is contained in:
2023-08-18 15:47:10 +00:00
parent 60848987eb
commit 199938f2b2
12 changed files with 95 additions and 21 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export const ServerVersion = new Schema<IServerVersion>({
branch: { type: String, required: true },
version: { type: String, required: true },
updateDate: { type: Date, required: true },
}, { autoIndex: false })
}, { autoIndex: false, autoCreate: false, })
.index({ serverKey: 1 }, { unique: true })
;