Browse Source

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

for-closed-social
luto 9 years ago
parent
commit
bff1e157d5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      models/models.go

+ 1
- 1
models/models.go 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

Loading…
Cancel
Save