From 66b9365c94c8b0b40eba4f4e55ad39592fd42c09 Mon Sep 17 00:00:00 2001 From: lukaszlato Date: Thu, 11 Jan 2024 10:24:23 +0100 Subject: [PATCH] disabled archived table for logs --- log_table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log_table.go b/log_table.go index 5146d34..2247530 100644 --- a/log_table.go +++ b/log_table.go @@ -6,7 +6,7 @@ import ( ) type LogEntity[Entity any] struct { - ID uint64 `orm:"archived;split_async_flush=log-entity"` + ID uint64 `orm:"split_async_flush=log-entity"` EntityID uint64 Date time.Time `orm:"time"` Meta []byte