Revert explicit setting of the storage engine
continuous-integration/drone/push Build is failing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2019-03-28 23:28:21 +01:00
parent 0a3ad26ac9
commit 41bd600046
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -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()...,
)
}