From 6d06e5ae9bff9b014436327332e4fb2d4002d5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxi=20Quo=C3=9F?= Date: Sun, 29 Dec 2024 10:50:00 +0100 Subject: [PATCH] fix: migration error on new database, close #922 --- backend/migrations/1735377462_collections_snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/migrations/1735377462_collections_snapshot.go b/backend/migrations/1735377462_collections_snapshot.go index 92d0d8c8..012d9bc1 100644 --- a/backend/migrations/1735377462_collections_snapshot.go +++ b/backend/migrations/1735377462_collections_snapshot.go @@ -1590,7 +1590,7 @@ func init() { } ]` - return app.ImportCollectionsByMarshaledJSON([]byte(jsonData), false) + return app.ImportCollectionsByMarshaledJSON([]byte(jsonData), true) }, func(app core.App) error { return nil })