From 41bd60004672aa9e6241b0cfac70e7e8effe6784 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 28 Mar 2019 23:28:21 +0100 Subject: [PATCH] Revert explicit setting of the storage engine --- pkg/migration/migration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/migration/migration.go b/pkg/migration/migration.go index 9e1d315e6..049dd377f 100644 --- a/pkg/migration/migration.go +++ b/pkg/migration/migration.go @@ -115,7 +115,7 @@ func dropTableColum(x *xorm.Engine, tableName, col string) error { } func initSchema(tx *xorm.Engine) error { - return tx.StoreEngine("InnoDB").Sync2( + return tx.Sync2( models.GetTables()..., ) }