@adaptware/eagles-db 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -8,10 +8,14 @@ model Assessment {
|
|
|
8
8
|
//data
|
|
9
9
|
score Float?
|
|
10
10
|
feedback Json?
|
|
11
|
+
// Scheduled Deadline Window
|
|
11
12
|
scheduled_start_time DateTime?
|
|
12
13
|
scheduled_end_time DateTime?
|
|
14
|
+
/// Actual Start and End Time
|
|
13
15
|
actual_start_time DateTime?
|
|
14
16
|
actual_end_time DateTime?
|
|
17
|
+
/// Attempt Expires At
|
|
18
|
+
attempt_expires_at DateTime?
|
|
15
19
|
/// Audit fields
|
|
16
20
|
created_at DateTime @default(now())
|
|
17
21
|
updated_at DateTime @updatedAt
|