force the use of InnoDB as db engine for all tables, fixes #59

This commit is contained in:
luto 2014-10-28 16:40:09 +01:00
parent c7f56d7483
commit bff1e157d5
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ func NewEngine() (err error) {
if err = SetEngine(); err != nil {
return err
}
if err = x.Sync2(tables...); err != nil {
if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
return fmt.Errorf("sync database struct error: %v\n", err)
}
return nil