From 38a3a5c6e83ee2b47dce7c28b22dc2836d3c9c41 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 13 Sep 2023 12:05:37 +0200 Subject: [PATCH] fix(typesense): explicitely create typesense sync table --- pkg/migration/20230828125443.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/migration/20230828125443.go b/pkg/migration/20230828125443.go index 8295c586ad8..c74566ee830 100644 --- a/pkg/migration/20230828125443.go +++ b/pkg/migration/20230828125443.go @@ -38,7 +38,7 @@ func init() { ID: "20230828125443", Description: "", Migrate: func(tx *xorm.Engine) error { - return tx.Sync2(typesenseSync20230828125443{}) + return tx.CreateTables(typesenseSync20230828125443{}) }, Rollback: func(tx *xorm.Engine) error { return nil