biz-slide-core 1.2.15 → 1.2.16
Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,7 @@ var mongoose_1 = require("mongoose");
|
|
5
5
|
var TrainingQueueSchema = new mongoose_1.Schema({
|
6
6
|
filename: { type: String, default: null },
|
7
7
|
isCompleted: { type: Boolean, default: false },
|
8
|
-
userId: { type:
|
8
|
+
userId: { type: mongoose_1.Schema.Types.ObjectId, ref: "user" },
|
9
9
|
isLocked: { type: Boolean, default: false },
|
10
10
|
deletedAt: { type: Date, default: null },
|
11
11
|
}, {
|