diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-09-18 18:37:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-18 18:37:47 +0800 |
commit | c56db8f2c4846ce5a23e08bc82def310041033a0 (patch) | |
tree | d018298d31c20b1776c048bb211cd6ae8a91bd9f /internal/db | |
parent | dda1092e74fa82f23a7ad62434fc60200f8df5ca (diff) |
db: create new session for MySQL after changing attribute (#6338)
Diffstat (limited to 'internal/db')
-rw-r--r-- | internal/db/db.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/db/db.go b/internal/db/db.go index ce130f2c..c3e3f19a 100644 --- a/internal/db/db.go +++ b/internal/db/db.go @@ -187,7 +187,10 @@ func Init() (*gorm.DB, error) { conf.UsePostgreSQL = true case "mysql": conf.UseMySQL = true - db = db.Set("gorm:table_options", "ENGINE=InnoDB") + db = db.Set("gorm:table_options", "ENGINE=InnoDB"). + Session(&gorm.Session{ + WithConditions: true, + }) case "sqlite3": conf.UseSQLite3 = true case "mssql": |