From 046482a2a8ce3652faf35d2dbc873a7149aba20b Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Mon, 16 Mar 2026 11:54:33 +0000 Subject: [PATCH] feat: upgrade time field type to DateTime64 for improved precision in MonitorLog model --- Common/Models/AnalyticsModels/MonitorLog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Models/AnalyticsModels/MonitorLog.ts b/Common/Models/AnalyticsModels/MonitorLog.ts index 5b7b424d11..4a720a9ae0 100644 --- a/Common/Models/AnalyticsModels/MonitorLog.ts +++ b/Common/Models/AnalyticsModels/MonitorLog.ts @@ -61,7 +61,7 @@ export default class MonitorLog extends AnalyticsBaseModel { title: "Time", description: "When was the log created?", required: true, - type: TableColumnType.Date, + type: TableColumnType.DateTime64, accessControl: { read: [ Permission.ProjectOwner,