Fix sqlite db not working when creating a new one
This commit is contained in:
parent
be11362533
commit
974d028e51
1 changed files with 2 additions and 1 deletions
|
@ -172,7 +172,8 @@ func initSqliteEngine() (engine *xorm.Engine, err error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("could not open database file [uid=%d, gid=%d]: %s", os.Getuid(), os.Getgid(), err)
|
return nil, fmt.Errorf("could not open database file [uid=%d, gid=%d]: %s", os.Getuid(), os.Getgid(), err)
|
||||||
}
|
}
|
||||||
_ = file.Close() // We directly close the file because we only want to check if it is writable. It will be reopened lazily later by xorm.
|
_ = file.Close() // We directly close the file because we only want to check if it is writable. It will be reopened lazily later by xorm.
|
||||||
|
_ = os.Remove(path) // Remove the file to not prevent the db from creating another one
|
||||||
|
|
||||||
return xorm.NewEngine("sqlite3", path)
|
return xorm.NewEngine("sqlite3", path)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue