mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-03 16:59:05 +01:00
force the use of InnoDB as db engine for all tables, fixes #59
This commit is contained in:
parent
c7f56d7483
commit
bff1e157d5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue