0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-06-16 09:28:41 +02:00

#1569 force InnoDB for MySQL

This commit is contained in:
Unknwon 2015-09-03 05:05:58 -04:00
parent a7ee654646
commit b1f0f85789

View file

@ -156,7 +156,7 @@ func NewTestEngine(x *xorm.Engine) (err error) {
}
x.SetMapper(core.GonicMapper{})
return x.Sync(tables...)
return x.StoreEngine("InnoDB").Sync2(tables...)
}
func SetEngine() (err error) {