first commit

This commit is contained in:
2026-01-26 10:54:31 +03:30
commit 1db3038221
20 changed files with 4026 additions and 0 deletions

13
models/UpdateData.js Normal file
View File

@@ -0,0 +1,13 @@
const mongoose = require("mongoose");
const UpdateDataSchema = new mongoose.Schema({
records: {
type: Map,
of: [mongoose.Schema.Types.Mixed],
default: {},
},
});
const UpdateData = mongoose.model("UpdateData", UpdateDataSchema);
module.exports = UpdateData;